Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/misc/
DFloatingDecimal.java516 int B2, B5; // powers of 2 and powers of 5, respectively, in B in dtoa() local
520 B5 = Math.max( 0, -decExp ); in dtoa()
521 B2 = B5 + nTinyBits + binExp; in dtoa()
526 M5 = B5; in dtoa()
591 int Bbits = nFractBits + B2 + (( B5 < N_5_BITS.length )? N_5_BITS[B5] : ( B5*3 )); in dtoa()
598 int b = ((int)fractBits * FDBigInteger.SMALL_5_POW[B5] ) << B2; in dtoa()
652 long b = (fractBits * FDBigInteger.LONG_5_POW[B5] ) << B2; in dtoa()
714 FDBigInteger Bval = FDBigInteger.valueOfMulPow52(fractBits, B5, B2 + shiftBias); in dtoa()
1252 …final int B5 = Math.max(0, -exp); // powers of 5 in bigB, value is not modified inside correctionL…
1288 int B2 = B5; // powers of 2 in bigB
[all …]