Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/math/
DConversion.java81 int resDigit; in bigInteger2String() local
93 resDigit = Division.divideArrayByInt(temp, temp, tempLen, in bigInteger2String()
98 resDigit % radix, radix); in bigInteger2String()
99 } while (((resDigit /= radix) != 0) && (currentChar != 0)); in bigInteger2String()
116 resDigit = digits[i] >> (j << 2) & 0xf; in bigInteger2String()
117 result[--currentChar] = Character.forDigit(resDigit, 16); in bigInteger2String()
217 int resDigit = (int) result11; in toDecimalScaledString() local
220 result[--currentChar] = (char) (0x0030 + (resDigit % 10)); in toDecimalScaledString()
221 } while (((resDigit /= 10) != 0) && (currentChar != 0)); in toDecimalScaledString()