Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/misc/
DFloatingDecimal.java262 private int firstDigitIndex; field in FloatingDecimal.BinaryToASCIIBuffer
295 this.firstDigitIndex = 0; in BinaryToASCIIBuffer()
324 System.arraycopy(this.digits,firstDigitIndex,digits,0,this.nDigits); in getDigits()
420 this.firstDigitIndex = digitno; in developLongDigits()
761 this.firstDigitIndex = 0; in dtoa()
771 if ( (digits[firstDigitIndex+nDigits-1]&1) != 0 ) { in dtoa()
789 int i = (firstDigitIndex + nDigits - 1);
792 while (q == '9' && i > firstDigitIndex) {
799 digits[firstDigitIndex] = '1';
915 System.arraycopy(digits, firstDigitIndex, result, i, charLength);
[all …]
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DFloatingDecimal.java386 private int firstDigitIndex; field in FloatingDecimal.BinaryToASCIIBuffer