Searched defs:HALF_POWERS_OF_10 (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
H A DIntMath.java71 // HALF_POWERS_OF_10[i] = largest int less than 10^(i + 0.5)
72 @VisibleForTesting static final int[] HALF_POWERS_OF_10 = field in class:IntMath
/external/guava/guava/src/com/google/common/math/
H A DIntMath.java135 return (x <= HALF_POWERS_OF_10[logFloor]) ? logFloor : logFloor + 1;
153 // HALF_POWERS_OF_10[i] = largest int less than 10^(i + 0.5)
154 @VisibleForTesting static final int[] HALF_POWERS_OF_10 = field in class:IntMath
H A DLongMath.java133 return (x <= HALF_POWERS_OF_10[logFloor]) ? logFloor : logFloor + 1;
171 // HALF_POWERS_OF_10[i] = largest long less than 10^(i + 0.5)
173 static final long[] HALF_POWERS_OF_10 = { field in class:LongMath

Completed in 66 milliseconds