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

1 2 3 4 5 6 7 8

  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_log10.c 19 * wrapper log10(X)
27 log10(double x) /* wrapper log10 */ function
37 return __kernel_standard(x,x,18); /* log10(0) */
39 return __kernel_standard(x,x,19); /* log10(x<0) */
  /bionic/libm/x86/
e_log10.S 39 // LH is a short approximation for log10(e)
43 // Result: k*log10(2) - log(B) + p(r)
49 // log10(0) = -INF with divide-by-zero exception raised
50 // log10(1) = +0
51 // log10(x) = NaN with invalid exception raised if x < -0, including -INF
52 // log10(+INF) = +INF
72 # -- Begin log10
73 ENTRY(log10) function
241 END(log10)
242 # -- End log10
    [all...]
  /prebuilts/go/darwin-x86/src/math/
log10.go 7 // Log10 returns the decimal logarithm of x.
9 func Log10(x float64) float64
11 func log10(x float64) float64 { func
  /prebuilts/go/linux-x86/src/math/
log10.go 7 // Log10 returns the decimal logarithm of x.
9 func Log10(x float64) float64
11 func log10(x float64) float64 { func
  /bionic/libm/x86_64/
e_log10.S 39 // LH is a short approximation for log10(e)
43 // Result: k*log10(2) - log(B) + p(r)
49 // log10(0) = -INF with divide-by-zero exception raised
50 // log10(1) = +0
51 // log10(x) = NaN with invalid exception raised if x < -0, including -INF
52 // log10(+INF) = +INF
57 # -- Begin log10
58 ENTRY(log10) function
222 END(log10)
223 # -- End log10
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/math/
BigIntegerMathRoundingBenchmark.java 63 @Benchmark int log10(int reps) { method in class:BigIntegerMathRoundingBenchmark
67 tmp += BigIntegerMath.log10(positive[j], mode);
IntMathRoundingBenchmark.java 63 @Benchmark int log10(int reps) { method in class:IntMathRoundingBenchmark
67 tmp += IntMath.log10(positive[j], mode);
LongMathRoundingBenchmark.java 63 @Benchmark int log10(int reps) { method in class:LongMathRoundingBenchmark
67 tmp += LongMath.log10(positive[j], mode);
  /external/clang/lib/Headers/
__clang_cuda_cmath.h 121 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_cmath.h 121 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_cmath.h 121 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
  /prebuilts/sdk/renderscript/clang-include/
__clang_cuda_cmath.h 121 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
  /external/guava/guava-tests/test/com/google/common/math/
IntMathTest.java 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)
    [all...]
BigIntegerMathTest.java 158 BigIntegerMath.log10(ZERO, mode);
168 BigIntegerMath.log10(BigInteger.valueOf(-1), mode);
178 int result = BigIntegerMath.log10(x, mode);
189 int result = BigIntegerMath.log10(x, mode);
196 // Relies on the correctness of log10(BigInteger, FLOOR).
200 int logFloor = BigIntegerMath.log10(x, FLOOR);
203 assertEquals(logFloor, BigIntegerMath.log10(x, UNNECESSARY));
214 int result = BigIntegerMath.log10(x, HALF_UP);
226 int result = BigIntegerMath.log10(x, HALF_DOWN);
235 // Relies on the correctness of log10(BigInteger, {HALF_UP,HALF_DOWN})
    [all...]
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 129 public static int log10(BigInteger x, RoundingMode mode) { method in class:BigIntegerMath
132 return LongMath.log10(x.longValue(), mode);
140 * We adjust approxLog10 and approxPow until they're equal to floor(log10(x)) and
141 * 10^floor(log10(x)).
186 // Since sqrt(10) is irrational, log10(x) - floorLog can never be exactly 0.5
IntMath.java 128 public static int log10(int x, RoundingMode mode) { method in class:IntMath
145 // sqrt(10) is irrational, so log10(x) - logFloor is never exactly 0.5
157 * we can narrow the possible floor(log10(x)) values to two. For example, if floor(log2(x))
158 * is 6, then 64 <= x < 128, so floor(log10(x)) is either 1 or 2.
162 * y is the higher of the two possible values of floor(log10(x)). If x < 10^y, then we want the
168 // maxLog10ForLeadingZeros[i] == floor(log10(2^(Long.SIZE - i)))
LongMath.java 127 public static int log10(long x, RoundingMode mode) { method in class:LongMath
144 // sqrt(10) is irrational, so log10(x)-logFloor is never exactly 0.5
157 * we can narrow the possible floor(log10(x)) values to two. For example, if floor(log2(x))
158 * is 6, then 64 <= x < 128, so floor(log10(x)) is either 1 or 2.
162 * y is the higher of the two possible values of floor(log10(x)). If x < 10^y, then we want the
168 // maxLog10ForLeadingZeros[i] == floor(log10(2^(Long.SIZE - i)))
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java 54 * {@code exp}, {@code log}, {@code log10},
252 public static native double log10(double a); method in class:StrictMath
    [all...]
  /libcore/ojluni/src/main/native/
jfdlibm.h 45 #define log10 jlog10 macro
55 #define log10 jlog10 macro
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_cmath.h 123 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
237 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
374 using ::log10;
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
__clang_cuda_cmath.h 132 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
246 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
383 using ::log10;
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
__clang_cuda_cmath.h 132 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
246 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
383 using ::log10;
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
__clang_cuda_cmath.h 132 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
246 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
383 using ::log10;
  /prebuilts/clang/host/darwin-x86/clang-4579689/lib64/clang/6.0.1/include/
__clang_cuda_cmath.h 132 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
246 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
383 using ::log10;
  /prebuilts/clang/host/darwin-x86/clang-4630689/lib64/clang/6.0.1/include/
__clang_cuda_cmath.h 132 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
246 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
383 using ::log10;

Completed in 412 milliseconds

1 2 3 4 5 6 7 8