Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/math/
DMathContext.java266 boolean lostDigits; field in MathContext
445 lostDigits=setlostdigits; // [no bad value possible] in MathContext()
485 return lostDigits; in getLostDigits()
567 …return "digits="+digits+" "+"form="+formstr+" "+"lostDigits="+(lostDigits?"1":"0")+" "+"roundingMo… in toString()
DBigDecimal.java1002 if (set.lostDigits) in add()
1240 if (set.lostDigits) in compareTo()
1522 if (set.lostDigits) in multiply()
1627 if (set.lostDigits) in negate()
1664 if (set.lostDigits) in plus()
1731 if (set.lostDigits) in pow()
1852 if (set.lostDigits) in subtract()
3074 if (set.lostDigits) in dodivide()
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
DMathContext.java277 boolean lostDigits; field in MathContext
461 lostDigits=setlostdigits; // [no bad value possible] in MathContext()
504 return lostDigits; in getLostDigits()
587 …return "digits="+digits+" "+"form="+formstr+" "+"lostDigits="+(lostDigits?"1":"0")+" "+"roundingMo… in toString()
DBigDecimal.java1024 if (set.lostDigits) in add()
1263 if (set.lostDigits) in compareTo()
1557 if (set.lostDigits) in multiply()
1664 if (set.lostDigits) in negate()
1703 if (set.lostDigits) in plus()
1772 if (set.lostDigits) in pow()
1897 if (set.lostDigits) in subtract()
3139 if (set.lostDigits) in dodivide()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
DMathContext.java277 boolean lostDigits; field in MathContext
461 lostDigits=setlostdigits; // [no bad value possible] in MathContext()
504 return lostDigits; in getLostDigits()
588 …return "digits="+digits+" "+"form="+formstr+" "+"lostDigits="+(lostDigits?"1":"0")+" "+"roundingMo… in toString()
DBigDecimal.java1026 if (set.lostDigits) in add()
1266 if (set.lostDigits) in compareTo()
1560 if (set.lostDigits) in multiply()
1667 if (set.lostDigits) in negate()
1706 if (set.lostDigits) in plus()
1775 if (set.lostDigits) in pow()
1900 if (set.lostDigits) in subtract()
3149 if (set.lostDigits) in dodivide()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DDecimalQuantity_AbstractBCD.java579 int lostDigits = precision - Math.min(precision, 17); in toDouble() local
580 for (int shift = precision - 1; shift >= lostDigits; shift--) { in toDouble()
584 int _scale = scale + lostDigits; in toDouble()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DDecimalQuantity_AbstractBCD.java581 int lostDigits = precision - Math.min(precision, 17); in toDouble() local
582 for (int shift = precision - 1; shift >= lostDigits; shift--) { in toDouble()
586 int _scale = scale + lostDigits; in toDouble()
/external/icu/icu4c/source/i18n/
Dnumber_decimalquantity.cpp477 int32_t lostDigits = precision - (precision < 17 ? precision : 17); in toDouble() local
478 for (int shift = precision - 1; shift >= lostDigits; shift--) { in toDouble()
482 int32_t _scale = scale + lostDigits; in toDouble()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
DSerializableTestUtility.java683 boolean lostDigits = (r & 1) != 0; in getTestObjects()
685 contexts[i++] = new MathContext(digits, forms[f], lostDigits, rounds[r]); in getTestObjects()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
DSerializableTestUtility.java680 boolean lostDigits = (r & 1) != 0; in getTestObjects()
682 contexts[i++] = new MathContext(digits, forms[f], lostDigits, rounds[r]); in getTestObjects()