Home
last modified time | relevance | path

Searched refs:approxPrecision (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/math/
DBigDecimal.java797 if (this.approxPrecision() < diffScale - 1) { in add()
800 } else if (augend.approxPrecision() < -diffScale - 1) { in add()
806 if (mc.getPrecision() >= larger.approxPrecision()) { in add()
900 if (subtrahend.approxPrecision() < diffScale - 1) { in subtract()
902 if (mc.getPrecision() < this.approxPrecision()) { in subtract()
1284 + divisor.approxPrecision() - approxPrecision(); in divide()
1360 if ((divisor.approxPrecision() + newScale > this.approxPrecision() + 1L) in divideToIntegralValue()
2092 int diffPrecision = this.approxPrecision() - val.approxPrecision(); in compareTo()
2389 if ((scale > approxPrecision()) || (scale > getUnscaledValue().getLowestSetBit())) { in toBigIntegerExact()
2413 return ((scale <= -64) || (scale > approxPrecision()) ? 0L : toBigInteger().longValue()); in longValue()
[all …]