Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/math/
DBigIntegerMath.java136 BigInteger approxPow = BigInteger.TEN.pow(approxLog10); in log10() local
137 int approxCmp = approxPow.compareTo(x); in log10()
152 approxPow = approxPow.divide(BigInteger.TEN); in log10()
153 approxCmp = approxPow.compareTo(x); in log10()
156 BigInteger nextPow = BigInteger.TEN.multiply(approxPow); in log10()
160 approxPow = nextPow; in log10()
162 nextPow = BigInteger.TEN.multiply(approxPow); in log10()
168 BigInteger floorPow = approxPow; in log10()