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

12 3 4 5 6 7 8

  /prebuilts/clang/host/darwin-x86/clang-4639204/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-4691093/lib64/clang/6.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/linux-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/linux-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/linux-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/linux-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/linux-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/linux-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;
  /prebuilts/clang/host/linux-x86/clang-4639204/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/linux-x86/clang-4691093/lib64/clang/6.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;
  /external/guava/guava-tests/test/com/google/common/math/
LongMathTest.java 60 BigIntegerMath.log10(BigInteger.ONE.shiftLeft(Long.SIZE - i), FLOOR),
222 LongMath.log10(0L, mode);
233 LongMath.log10(x, mode);
240 // Relies on the correctness of BigIntegerMath.log10 for all modes except UNNECESSARY.
245 assertEquals(BigIntegerMath.log10(valueOf(x), mode), LongMath.log10(x, mode));
250 // Relies on the correctness of log10(long, FLOOR) and of pow(long, int).
254 int floor = LongMath.log10(x, FLOOR);
257 assertEquals(floor, LongMath.log10(x, UNNECESSARY));
269 assertEquals(12, LongMath.log10(x, mode))
    [all...]
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 135 log10() const function
  /libcore/ojluni/src/main/java/java/lang/
Math.java 315 public static native double log10(double a); method in class:Math
    [all...]
  /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/host/x86_64-linux-glibc2.15-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/eigen/Eigen/src/Core/arch/CUDA/
Half.h 401 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC half log10(const half& a) { function in namespace:Eigen::half_impl
  /external/python/cpython3/Modules/_decimal/tests/
deccheck.py 59 'exp', 'is_normal', 'is_subnormal', 'ln', 'log10', 'logb',
103 'context.ln', 'context.log10', 'context.logb',
485 def log10(self, t): member in class:SkipHandler
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 1094 public int log10() { method in class:Dfp
    [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/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 47 Ambiguous log10(Ambiguous){ return Ambiguous(); } function
387 static_assert((std::is_same<decltype(log10((float)0)), float>::value), "");
388 static_assert((std::is_same<decltype(log10((bool)0)), double>::value), "");
389 static_assert((std::is_same<decltype(log10((unsigned short)0)), double>::value), "");
390 static_assert((std::is_same<decltype(log10((int)0)), double>::value), "");
391 static_assert((std::is_same<decltype(log10((unsigned int)0)), double>::value), "");
392 static_assert((std::is_same<decltype(log10((long)0)), double>::value), "");
393 static_assert((std::is_same<decltype(log10((unsigned long)0)), double>::value), "");
394 static_assert((std::is_same<decltype(log10((long long)0)), double>::value), "");
395 static_assert((std::is_same<decltype(log10((unsigned long long)0)), double>::value), "")
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 49 Ambiguous log10(Ambiguous){ return Ambiguous(); } function
390 static_assert((std::is_same<decltype(std::log10((float)0)), float>::value), "");
391 static_assert((std::is_same<decltype(std::log10((bool)0)), double>::value), "");
392 static_assert((std::is_same<decltype(std::log10((unsigned short)0)), double>::value), "");
393 static_assert((std::is_same<decltype(std::log10((int)0)), double>::value), "");
394 static_assert((std::is_same<decltype(std::log10((unsigned int)0)), double>::value), "");
395 static_assert((std::is_same<decltype(std::log10((long)0)), double>::value), "");
396 static_assert((std::is_same<decltype(std::log10((unsigned long)0)), double>::value), "");
397 static_assert((std::is_same<decltype(std::log10((long long)0)), double>::value), "");
398 static_assert((std::is_same<decltype(std::log10((unsigned long long)0)), double>::value), "")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/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/host/darwin-x86/clang-3859424/lib64/clang/4.0/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

Completed in 832 milliseconds

12 3 4 5 6 7 8