Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/math/
DConversion.java80 int currentChar = resLengthInChars; in bigInteger2String() local
95 int previous = currentChar; in bigInteger2String()
97 result[--currentChar] = Character.forDigit( in bigInteger2String()
99 } while (((resDigit /= radix) != 0) && (currentChar != 0)); in bigInteger2String()
100 int delta = charsPerInt - previous + currentChar; in bigInteger2String()
101 for (i = 0; i < delta && currentChar > 0; i++) { in bigInteger2String()
102 result[--currentChar] = '0'; in bigInteger2String()
115 for (int j = 0; (j < 8) && (currentChar > 0); j++) { in bigInteger2String()
117 result[--currentChar] = Character.forDigit(resDigit, 16); in bigInteger2String()
121 while (result[currentChar] == '0') { in bigInteger2String()
[all …]