Home
last modified time | relevance | path

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

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DDecimalQuantity_64BitBCD.java136 long tempLong = 0L; in bcdToBigDecimal() local
138 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()
140 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
/external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DDecimalQuantity_64BitBCD.java139 long tempLong = 0L; in bcdToBigDecimal() local
141 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()
143 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DDecimalQuantity_DualStorageBCD.java230 long tempLong = 0L; in bcdToBigDecimal() local
232 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()
234 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
DDecimalQuantity_AbstractBCD.java578 long tempLong = 0L; in toDouble() local
581 tempLong = tempLong * 10 + getDigitPos(shift); in toDouble()
583 double result = tempLong; in toDouble()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DDecimalQuantity_DualStorageBCD.java232 long tempLong = 0L; in bcdToBigDecimal() local
234 tempLong = tempLong * 10 + getDigitPos(shift); in bcdToBigDecimal()
236 BigDecimal result = BigDecimal.valueOf(tempLong); in bcdToBigDecimal()
DDecimalQuantity_AbstractBCD.java580 long tempLong = 0L; in toDouble() local
583 tempLong = tempLong * 10 + getDigitPos(shift); in toDouble()
585 double result = tempLong; in toDouble()
/external/icu/icu4c/source/i18n/
Dnumber_decimalquantity.cpp476 int64_t tempLong = 0L; in toDouble() local
479 tempLong = tempLong * 10 + getDigitPos(shift); in toDouble()
481 double result = static_cast<double>(tempLong); in toDouble()