| /external/guava/guava/src/com/google/common/math/ | 
| IntMath.java | 117   public static int log10(int x, RoundingMode mode) {  method in class:IntMath 134         // sqrt(10) is irrational, so log10(x) - logFloor is never exactly 0.5
 
 | 
| BigIntegerMath.java | 126   public static int log10(BigInteger x, RoundingMode mode) {  method in class:BigIntegerMath 129       return LongMath.log10(x.longValue(), mode);
 165         // Since sqrt(10) is irrational, log10(x) - floorLog can never be exactly 0.5
 
 | 
| LongMath.java | 112   public static int log10(long x, RoundingMode mode) {  method in class:LongMath 115       return IntMath.log10((int) x, mode);
 132         // sqrt(10) is irrational, so log10(x)-logFloor is never exactly 0.5
 
 | 
| /external/stlport/src/ | 
| complex.cpp | 219 // log10 225   r._M_re = ::log10(::hypot(z._M_re, z._M_im));
 229 _STLP_DECLSPEC complex<float> _STLP_CALL log10(const complex<float>& z)  function
 235 _STLP_DECLSPEC complex<double> _STLP_CALL log10(const complex<double>& z)  function
 237   const double LN10_INV = 1. / ::log10(10.);
 242 _STLP_DECLSPEC complex<long double> _STLP_CALL log10(const complex<long double>& z)  function
 
 | 
| /ndk/sources/cxx-stl/stlport/src/ | 
| complex.cpp | 219 // log10 225   r._M_re = ::log10(::hypot(z._M_re, z._M_im));
 229 _STLP_DECLSPEC complex<float> _STLP_CALL log10(const complex<float>& z)  function
 235 _STLP_DECLSPEC complex<double> _STLP_CALL log10(const complex<double>& z)  function
 237   const double LN10_INV = 1. / ::log10(10.);
 242 _STLP_DECLSPEC complex<long double> _STLP_CALL log10(const complex<long double>& z)  function
 
 | 
| /external/guava/guava-tests/test/com/google/common/math/ | 
| IntMathTest.java | 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))
 [all...]
 | 
| LongMathTest.java | 186         LongMath.log10(0L, mode); 196           LongMath.log10(x, mode);
 203   // Relies on the correctness of BigIntegerMath.log10 for all modes except UNNECESSARY.
 207         assertEquals(BigIntegerMath.log10(valueOf(x), mode), LongMath.log10(x, mode));
 212   // Relies on the correctness of log10(long, FLOOR) and of pow(long, int).
 215       int floor = LongMath.log10(x, FLOOR);
 218         assertEquals(floor, LongMath.log10(x, UNNECESSARY));
 229       assertEquals(12, LongMath.log10(x, mode));
 
 | 
| BigIntegerMathTest.java | 157         BigIntegerMath.log10(ZERO, mode); 167           BigIntegerMath.log10(x.negate(), mode);
 177         int result = BigIntegerMath.log10(x, mode);
 187         int result = BigIntegerMath.log10(x, mode);
 194   // Relies on the correctness of log10(BigInteger, FLOOR).
 197       int logFloor = BigIntegerMath.log10(x, FLOOR);
 200         assertEquals(logFloor, BigIntegerMath.log10(x, UNNECESSARY));
 210       int result = BigIntegerMath.log10(x, HALF_UP);
 221       int result = BigIntegerMath.log10(x, HALF_DOWN);
 230   // Relies on the correctness of log10(BigInteger, {HALF_UP,HALF_DOWN})
 [all...]
 | 
| /libcore/luni/src/main/java/java/lang/ | 
| Math.java | 402      * <li>{@code log10(+0.0) = -infinity}</li> 403      * <li>{@code log10(-0.0) = -infinity}</li>
 404      * <li>{@code log10((anything < 0) = NaN}</li>
 405      * <li>{@code log10(+infinity) = +infinity}</li>
 406      * <li>{@code log10(-infinity) = NaN}</li>
 407      * <li>{@code log10(NaN) = NaN}</li>
 414     public static native double log10(double d);  method in class:Math
 [all...]
 | 
| StrictMath.java | 398      * <li>{@code log10(+0.0) = -infinity}</li> 399      * <li>{@code log10(-0.0) = -infinity}</li>
 400      * <li>{@code log10((anything < 0) = NaN}</li>
 401      * <li>{@code log10(+infinity) = +infinity}</li>
 402      * <li>{@code log10(-infinity) = NaN}</li>
 403      * <li>{@code log10(NaN) = NaN}</li>
 410     public static native double log10(double d);  method in class:StrictMath
 [all...]
 | 
| /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/ | 
| tgmath.h | 145 #define log10(x)         __TGMATH_REAL(x, log10)  macro 
 | 
| /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/ | 
| tgmath.h | 156 #define log10(x)         __TGMATH_REAL(x, log10)  macro 
 | 
| /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/ | 
| tgmath.h | 156 #define log10(x)         __TGMATH_REAL(x, log10)  macro 
 | 
| /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/include/ | 
| tgmath.h | 145 #define log10(x)         __TGMATH_REAL(x, log10)  macro 
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ | 
| tgmath.h | 304 # define log10(Val) __TGMATH_UNARY_REAL_IMAG (Val, log10, __clog10)  macro 306 # define log10(Val) __TGMATH_UNARY_REAL_ONLY (Val, log10)  macro
 
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ | 
| tgmath.h | 304 # define log10(Val) __TGMATH_UNARY_REAL_IMAG (Val, log10, __clog10)  macro 306 # define log10(Val) __TGMATH_UNARY_REAL_ONLY (Val, log10)  macro
 
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ | 
| tgmath.h | 145 #define log10(x)         __TGMATH_REAL(x, log10)  macro 
 | 
| /external/bison/darwin-lib/ | 
| math.h | 1617 # undef log10  macro [all...]
 | 
| /external/bison/lib/ | 
| math.in.h | 1295 # undef log10  macro 1296 # define log10  macro
 1303 _GL_CXXALIASWARN (log10);  variable
 1305 # undef log10  macro
 [all...]
 | 
| /external/bison/linux-lib/ | 
| math.h | 1617 # undef log10  macro [all...]
 | 
| /external/clang/lib/Headers/ | 
| tgmath.h | 928 // log10 936     __tg_log10(double __x) {return log10(__x);}
 942 #undef log10  macro
 943 #define log10(__x) __tg_log10(__tg_promote1((__x))(__x))  macro
 
 | 
| /prebuilts/clang/darwin-x86/host/3.4/lib/clang/3.4/include/ | 
| tgmath.h | 928 // log10 936     __tg_log10(double __x) {return log10(__x);}
 942 #undef log10  macro
 943 #define log10(__x) __tg_log10(__tg_promote1((__x))(__x))  macro
 
 | 
| /prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/ | 
| tgmath.h | 928 // log10 936     __tg_log10(double __x) {return log10(__x);}
 942 #undef log10  macro
 943 #define log10(__x) __tg_log10(__tg_promote1((__x))(__x))  macro
 
 | 
| /prebuilts/clang/linux-x86/host/3.4/lib/clang/3.4/include/ | 
| tgmath.h | 928 // log10 936     __tg_log10(double __x) {return log10(__x);}
 942 #undef log10  macro
 943 #define log10(__x) __tg_log10(__tg_promote1((__x))(__x))  macro
 
 | 
| /prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/ | 
| tgmath.h | 928 // log10 936     __tg_log10(double __x) {return log10(__x);}
 942 #undef log10  macro
 943 #define log10(__x) __tg_log10(__tg_promote1((__x))(__x))  macro
 
 |