Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/misc/
DFloatingDecimal.java371 …long pow10 = FDBigInteger.LONG_5_POW[insignificantDigits] << insignificantDigits; // 10^i == 5^i *… in developLongDigits()
448 … if ( (nTinyBits < FDBigInteger.LONG_5_POW.length) && ((nFractBits + N_5_BITS[nTinyBits]) < 64 ) ){ in dtoa()
652 long b = (fractBits * FDBigInteger.LONG_5_POW[B5] ) << B2; in dtoa()
653 long s = FDBigInteger.LONG_5_POW[S5] << S2; in dtoa()
654 long m = FDBigInteger.LONG_5_POW[M5] << M2; in dtoa()
DFDBigInteger.java84 static final long[] LONG_5_POW = { field in FDBigInteger