Home | History | Annotate | Download | only in math

Lines Matching defs:log10

144   @GwtIncompatible("log10")
148 IntMath.log10(0, mode);
154 @GwtIncompatible("log10")
159 IntMath.log10(x, mode);
166 // Relies on the correctness of BigIntegerMath.log10 for all modes except UNNECESSARY.
172 assertEquals(BigIntegerMath.log10(valueOf(x), mode), IntMath.log10(x, mode));
177 // Relies on the correctness of log10(int, FLOOR) and of pow(int, int).
181 int floor = IntMath.log10(x, FLOOR);
184 assertEquals(floor, IntMath.log10(x, UNNECESSARY));
192 @GwtIncompatible("log10")
196 assertEquals(6, IntMath.log10(x, mode));