HomeSort by relevance Sort by last modified time
    Searched defs:log10 (Results 1 - 19 of 19) sorted by null

  /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/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...]
  /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
  /external/chromium_org/v8/src/
d8.js 14 function log10(num) { function
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 342 friend const mpreal log10(const mpreal& v, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2067 inline const mpreal log10 (const mpreal& x, mp_rnd_t r) { MPREAL_UNARY_MATH_FUNCTION_BODY(log10); } function in namespace:mpfr
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 83 static native float log10(float x); method in class:CoreMathVerifier
428 static private Target.Floaty log10(float f, Target t) { method in class:CoreMathVerifier
431 log10(in.mid32()),
432 log10(in.min32()),
433 log10(in.max32()));
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 376 /// double log10(double x);
377 log10, enumerator in enum:llvm::LibFunc::Func
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js 3625 function log10(sp) function
    [all...]
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 642 milliseconds