Home | History | Annotate | Download | only in math

Lines Matching defs:log10

66           BigIntegerMath.log10(BigInteger.ONE.shiftLeft(Integer.SIZE - i), FLOOR),
164 @GwtIncompatible("log10")
168 IntMath.log10(0, mode);
174 @GwtIncompatible("log10")
179 IntMath.log10(x, mode);
186 // Relies on the correctness of BigIntegerMath.log10 for all modes except UNNECESSARY.
192 assertEquals(BigIntegerMath.log10(valueOf(x), mode), IntMath.log10(x, mode));
197 // Relies on the correctness of log10(int, FLOOR) and of pow(int, int).
201 int floor = IntMath.log10(x, FLOOR);
204 assertEquals(floor, IntMath.log10(x, UNNECESSARY));
212 @GwtIncompatible("log10")
216 assertEquals(6, IntMath.log10(x, mode));