Searched refs:FACTORIALS (Results 1 - 6 of 6) sorted by relevance

/external/guava/guava/src/com/google/common/math/
H A DBigIntegerMath.java288 if (n < LongMath.FACTORIALS.length) {
289 return BigInteger.valueOf(LongMath.FACTORIALS[n]);
297 int startingNumber = LongMath.FACTORIALS.length;
298 long product = LongMath.FACTORIALS[startingNumber - 1];
H A DIntMath.java440 return (n < FACTORIALS.length) ? FACTORIALS[n] : Integer.MAX_VALUE;
443 static final int[] FACTORIALS = { field in class:IntMath
H A DLongMath.java537 return (n < FACTORIALS.length) ? FACTORIALS[n] : Long.MAX_VALUE;
540 static final long[] FACTORIALS = { field in class:LongMath
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
H A DIntMath.java161 static final int[] FACTORIALS = { field in class:IntMath
/external/guava/guava-tests/test/com/google/common/math/
H A DLongMathTest.java78 for (int i = 0; i < LongMath.FACTORIALS.length; i++, expected *= i) {
79 assertEquals(expected, LongMath.FACTORIALS[i]);
83 LongMath.FACTORIALS[LongMath.FACTORIALS.length - 1], LongMath.FACTORIALS.length);
/external/droiddriver/libs/
H A Dguava-13.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/hash/ ...

Completed in 410 milliseconds