Searched refs:FDBigInteger (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/sun/misc/ |
D | FDBigInteger.java | 34 public /*@ spec_bigint_math @*/ class FDBigInteger { class 118 private static final FDBigInteger POW_5_CACHE[]; 122 POW_5_CACHE = new FDBigInteger[MAX_FIVE_POW]; 125 FDBigInteger pow5 = new FDBigInteger(new int[]{SMALL_5_POW[i]}, 0); 130 FDBigInteger prev = POW_5_CACHE[i - 1]; 139 public static final FDBigInteger ZERO = new FDBigInteger(new int[0], 0); 185 private FDBigInteger(int[] data, int offset) { in FDBigInteger() method in FDBigInteger 207 public FDBigInteger(long lValue, char[] digits, int kDigits, int nDigits) { in FDBigInteger() method in FDBigInteger 250 public static FDBigInteger valueOfPow52(int p5, int p2) { in valueOfPow52() 259 return new FDBigInteger(new int[]{pow5}, wordcount); in valueOfPow52() [all …]
|
D | FloatingDecimal.java | 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() 598 int b = ((int)fractBits * FDBigInteger.SMALL_5_POW[B5] ) << B2; in dtoa() 599 int s = FDBigInteger.SMALL_5_POW[S5] << S2; in dtoa() 600 int m = FDBigInteger.SMALL_5_POW[M5] << M2; 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() 710 FDBigInteger Sval = FDBigInteger.valueOfPow52(S5, S2); in dtoa() 714 FDBigInteger Bval = FDBigInteger.valueOfMulPow52(fractBits, B5, B2 + shiftBias); in dtoa() [all …]
|
/libcore/ |
D | openjdk_java_files.bp | 1447 "ojluni/src/main/java/sun/misc/FDBigInteger.java",
|