Home | History | Annotate | Download | only in math

Lines Matching refs:pow

54   @GwtIncompatible("pow()")
57 assertEquals(IntMath.pow(10, i), IntMath.POWERS_OF_10[i]);
66 BigIntegerMath.sqrt(BigInteger.TEN.pow(2 * i + 1), FLOOR).longValue());
177 // Relies on the correctness of log10(int, FLOOR) and of pow(int, int).
178 @GwtIncompatible("pow()")
182 boolean expectSuccess = IntMath.pow(10, floor) == x;
252 for (int pow : EXPONENTS) {
253 assertEquals(i + "^" + pow, BigInteger.valueOf(i).pow(pow).intValue(), IntMath.pow(i, pow));
287 @GwtIncompatible("pow()")
296 @GwtIncompatible("pow()")
427 BigInteger expectedResult = valueOf(b).pow(k);