HomeSort by relevance Sort by last modified time
    Searched defs:POWERS_OF_10 (Results 1 - 4 of 4) sorted by null

  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
IntMath.java 60 for (int i = 1; i < POWERS_OF_10.length; i++) {
61 if (x < POWERS_OF_10[i]) {
65 return POWERS_OF_10.length - 1;
68 @VisibleForTesting static final int[] POWERS_OF_10 =
  /external/guava/guava/src/com/google/common/math/
IntMath.java 120 int floorPow = POWERS_OF_10[logFloor];
142 for (int i = 1; i < POWERS_OF_10.length; i++) {
143 if (x < POWERS_OF_10[i]) {
147 return POWERS_OF_10.length - 1;
150 @VisibleForTesting static final int[] POWERS_OF_10 =
LongMath.java 118 long floorPow = POWERS_OF_10[logFloor];
140 for (int i = 1; i < POWERS_OF_10.length; i++) {
141 if (x < POWERS_OF_10[i]) {
145 return POWERS_OF_10.length - 1;
149 static final long[] POWERS_OF_10 = {
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 226 milliseconds