Searched refs:bigRadices (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/math/
H A DConversion.java38 * bigRadices values are precomputed maximal powers of radices (integer
39 * numbers from 2 to 36) that fit into unsigned int (32 bits). bigRadices[0] =
40 * 2 ^ 31, bigRadices[8] = 10 ^ 9, etc.
43 static final int[] bigRadices = { -2147483648, 1162261467, field in class:Conversion
89 int bigRadix = bigRadices[radix - 2];
H A DBigInteger.java1190 int bigRadix = Conversion.bigRadices[radix - 2];

Completed in 24 milliseconds