Home
last modified time | relevance | path

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

/external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
DLongMathTest.java125 BigInteger expectedBig = BigIntegerMath.binomial(n, k); in testBinomial() local
126 long expectedLong = fitsInLong(expectedBig) ? expectedBig.longValue() : Long.MAX_VALUE; in testBinomial()
DIntMathTest.java298 BigInteger expectedBig = BigIntegerMath.factorial(n); in testFactorial() local
299 int expectedInt = fitsInInt(expectedBig) ? expectedBig.intValue() : Integer.MAX_VALUE; in testFactorial()
/external/guava/guava-tests/test/com/google/common/math/
DIntMathTest.java465 BigInteger expectedBig = BigIntegerMath.factorial(n); in testFactorial() local
466 int expectedInt = fitsInInt(expectedBig) ? expectedBig.intValue() : Integer.MAX_VALUE; in testFactorial()
485 BigInteger expectedBig = BigIntegerMath.binomial(n, k); in testBinomial() local
486 int expectedInt = fitsInInt(expectedBig) ? expectedBig.intValue() : Integer.MAX_VALUE; in testBinomial()
DLongMathTest.java543 BigInteger expectedBig = BigIntegerMath.factorial(n); in testFactorial() local
544 long expectedLong = fitsInLong(expectedBig) ? expectedBig.longValue() : Long.MAX_VALUE; in testFactorial()
563 BigInteger expectedBig = BigIntegerMath.binomial(n, k); in testBinomial() local
564 long expectedLong = fitsInLong(expectedBig) ? expectedBig.longValue() : Long.MAX_VALUE; in testBinomial()