Searched refs:log10 (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-13-stable/lib/msun/i387/
H A De_log10.S39 ENTRY(log10)
44 END(log10)
/freebsd-13-stable/lib/msun/src/
H A De_log10.c21 * log10(x) = (f - 0.5*f*f + k_log1p(f)) / ln10 + k * log10(2)
93 __weak_reference(log10, log10l);
H A Dmath.h253 double log10(double);
H A Dmath_private.h847 #define __ieee754_log10 log10
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h124 __DEVICE__ double log10(double);
125 __DEVICE__ float log10(float);
242 using ::log10;
H A D__clang_cuda_cmath.h126 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
237 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
367 using ::log10;
H A Dtgmath.h921 // log10
929 __tg_log10(double __x) {return log10(__x);}
935 #undef log10 macro
936 #define log10(__x) __tg_log10(__tg_promote1((__x))(__x)) macro
H A D__clang_cuda_math.h170 __DEVICE__ double log10(double __a) { return __nv_log10(__a); } function
H A D__clang_hip_math.h682 inline double log10(double __x) { return __ocml_log10_f64(__x); } function
1109 __DEF_FUN1(double, log10)
/freebsd-13-stable/contrib/netbsd-tests/lib/libm/
H A Dt_log.c42 * log10(3)
47 atf_tc_set_md_var(tc, "descr", "Test log10(10) == 1");
52 ATF_CHECK(log10(10.0) == 1.0);
58 atf_tc_set_md_var(tc, "descr", "Test log10(NaN) == NaN");
66 ATF_CHECK(isnan(log10(x)) != 0);
72 atf_tc_set_md_var(tc, "descr", "Test log10(-Inf) == NaN");
78 const double y = log10(x);
86 atf_tc_set_md_var(tc, "descr", "Test log10(+Inf) == +Inf");
93 ATF_CHECK(log10(x) == x);
99 atf_tc_set_md_var(tc, "descr", "Test log10(1.
[all...]
/freebsd-13-stable/lib/msun/tests/
H A Dlogarithm_test.c83 test(log10, x, result, exceptmask, excepts); \
165 test(log10, 1.0, 0.0, ALL_STD_EXCEPT, 0);
233 test_tol(log10, tests[i].x, tests[i].log10x, DBL_ULP());
/freebsd-13-stable/contrib/cortex-strings/scripts/
H A Dbench.py121 scale = 10**int(math.log10(f) - 1)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp47 size_t MaxLineNumberWidth = std::ceil(std::log10(LastLine));
/freebsd-13-stable/include/
H A Dtgmath.h186 #define log10(x) __tg_simple(x, log10) macro
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp186 std::log10(Depth) + 2)
/freebsd-13-stable/contrib/lua/src/
H A Dlmathlib.c181 res = l_mathop(log10)(x);
695 lua_pushnumber(L, l_mathop(log10)(luaL_checknumber(L, 1)));
734 {"log10", math_log10},
/freebsd-13-stable/tools/regression/include/tgmath/
H A Dtgmath.c132 TGMACRO_REAL(log10)
543 PRINT("log10",
544 PASS_REAL_ARG_REAL_RET(log10));
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h102 floating_point log10 (arithmetic x);
958 // log10
961 inline _LIBCPP_INLINE_VISIBILITY float log10(float __lcpp_x) _NOEXCEPT {return ::log10f(__lcpp_x);}
962 inline _LIBCPP_INLINE_VISIBILITY long double log10(long double __lcpp_x) _NOEXCEPT {return ::log10l(__lcpp_x);}
968 log10(_A1 __lcpp_x) _NOEXCEPT {return ::log10((double)__lcpp_x);}
/freebsd-13-stable/lib/libifconfig/
H A Dlibifconfig_sfp.c360 return (10.0 * log10(power_mW(power)));
/freebsd-13-stable/lib/msun/
H A DMakefile225 MLINKS+=log.3 log10.3 log.3 log10f.3 log.3 log10l.3 \
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp384 case Intrinsic::log10: {
385 ReplaceFPIntrinsicWithCall(CI, "log10f", "log10", "log10l");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1857 // This is only applicable to log(), log2(), log10().
1903 LogID = Intrinsic::log10;
1910 LogID = Intrinsic::log10;
1917 LogID = Intrinsic::log10;
1927 LogID == Intrinsic::log10) {
3018 case Intrinsic::log10:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp1469 case Intrinsic::log10:
1574 Name == "log10" || Name == "log10f";
1971 case Intrinsic::log10:
1973 return ConstantFoldFP(log10, V, Ty);
2103 return ConstantFoldFP(log10, V, Ty);
H A DVectorUtils.cpp67 case Intrinsic::log10:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp312 case Intrinsic::log10:

Completed in 326 milliseconds

12