Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/misc/
DFloatingDecimal.java517 int S2, S5; // powers of 2 and powers of 5, respectively, in S in dtoa() local
523 S5 = Math.max( 0, decExp ); in dtoa()
524 S2 = S5 + nTinyBits; in dtoa()
594 int tenSbits = S2+1 + (( (S5+1) < N_5_BITS.length )? N_5_BITS[(S5+1)] : ( (S5+1)*3 )); in dtoa()
599 int s = FDBigInteger.SMALL_5_POW[S5] << S2; in dtoa()
653 long s = FDBigInteger.LONG_5_POW[S5] << S2; in dtoa()
710 FDBigInteger Sval = FDBigInteger.valueOfPow52(S5, S2); in dtoa()
717 … FDBigInteger tenSval = FDBigInteger.valueOfPow52(S5 + 1, S2 + shiftBias + 1); //Sval.mult( 10 ); in dtoa()