Searched refs:S5 (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/sun/misc/ |
D | FormattedFloatingDecimal.java | 700 int S2, S5; // powers of 2 and powers of 5, respectively, in S in dtoa() local 709 S5 = Math.max( 0, decExp ); in dtoa() 710 S2 = S5 + nTinyBits; in dtoa() 777 tenSbits = S2+1 + (( (S5+1) < n5bits.length )? n5bits[(S5+1)] : ( (S5+1)*3 )); in dtoa() 782 int s = small5pow[S5] << S2; in dtoa() 835 long s = long5pow[S5] << S2; in dtoa() 895 Sval = constructPow52( S5, S2 ); in dtoa()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | FloatingDecimal.java | 633 int S2, S5; // powers of 2 and powers of 5, respectively, in S in dtoa() local 642 S5 = Math.max( 0, decExp ); in dtoa() 643 S2 = S5 + nTinyBits; in dtoa() 710 tenSbits = S2+1 + (( (S5+1) < n5bits.length )? n5bits[(S5+1)] : ( (S5+1)*3 )); in dtoa() 715 int s = small5pow[S5] << S2; in dtoa() 768 long s = long5pow[S5] << S2; in dtoa() 828 Sval = constructPow52( S5, S2 ); in dtoa()
|