Searched refs:bigTenPows (Results 1 – 2 of 2) sorted by relevance
57 static final BigInteger[] bigTenPows = new BigInteger[32]; field in Multiplication73 bigTenPows[i] = BigInteger.valueOf(fivePow << i);76 for (; i < bigTenPows.length; i++) {78 bigTenPows[i] = bigTenPows[i - 1].multiply(BigInteger.TEN);122 if (exp < bigTenPows.length) { in powerOf10()124 return bigTenPows[intExp]; in powerOf10()
192 TEN_POW = Multiplication.bigTenPows;