Searched refs:LONG_5_POW (Results 1 – 2 of 2) sorted by relevance
371 …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()
84 static final long[] LONG_5_POW = { field in FDBigInteger