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

12

/freebsd-11-stable/lib/msun/i387/
H A De_log10.S39 ENTRY(log10)
44 END(log10)
/freebsd-11-stable/contrib/libstdc++/include/c_compatibility/
H A Dmath.h50 using std::log10;
/freebsd-11-stable/contrib/libstdc++/libmath/
H A Dstubs.c335 return (float) log10(x);
343 return log10((double) x);
H A Dmathconf.h282 # define log10f(x) log10 (x)
/freebsd-11-stable/contrib/libstdc++/include/c/
H A Dstd_cmath.h60 #undef log10 macro
/freebsd-11-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.h754 #define __ieee754_log10 log10
/freebsd-11-stable/lib/msun/tests/
H A Dlogarithm_test.c90 test(log10, x, result, exceptmask, excepts); \
175 test(log10, 1.0, 0.0, ALL_STD_EXCEPT, 0);
232 test_tol(log10, tests[i].x, tests[i].log10x, DBL_ULP());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h147 __DEVICE__ double log10(double);
148 __DEVICE__ float log10(float);
268 using ::log10;
H A D__clang_cuda_cmath.h141 __DEVICE__ float log10(float __x) { return ::log10f(__x); } function
250 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, log10)
380 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
/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_log.c41 * log10(3)
46 atf_tc_set_md_var(tc, "descr", "Test log10(10) == 1");
51 ATF_CHECK(log10(10.0) == 1.0);
57 atf_tc_set_md_var(tc, "descr", "Test log10(NaN) == NaN");
65 ATF_CHECK(isnan(log10(x)) != 0);
71 atf_tc_set_md_var(tc, "descr", "Test log10(-Inf) == NaN");
77 const double y = log10(x);
85 atf_tc_set_md_var(tc, "descr", "Test log10(+Inf) == +Inf");
92 ATF_CHECK(log10(x) == x);
98 atf_tc_set_md_var(tc, "descr", "Test log10(1.
[all...]
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dmath.h73 using std::tr1::log10;
/freebsd-11-stable/contrib/gcc/
H A Dfp-test.c58 extern double log10 (double);
242 d1 = log10 (d2);
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cmath.h73 #undef log10 macro
319 using ::log10;
322 log10(float __x) function
326 log10(long double __x) function
332 log10(_Tp __x) function
/freebsd-11-stable/contrib/gdb/gdb/cli/
H A Dcli-cmds.c558 int cmdlen, log10;
636 for(log10=32, m=0x80000000; !(sal.line & m) && log10>0; log10--, m=m>>1);
637 log10 = 1 + (int)((log10 + (0 == ((m-1) & sal.line)))/3.32192809);
642 + log10 + 2;
553 int cmdlen, log10; local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp47 size_t MaxLineNumberWidth = std::ceil(std::log10(LastLine));
/freebsd-11-stable/contrib/lua/src/
H A Dlmathlib.c191 res = l_mathop(log10)(x);
343 lua_pushnumber(L, l_mathop(log10)(luaL_checknumber(L, 1)));
384 {"log10", math_log10},
/freebsd-11-stable/include/
H A Dtgmath.h184 #define log10(x) __tg_simple(x, log10) macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp186 std::log10(Depth) + 2)
/freebsd-11-stable/tools/regression/include/tgmath/
H A Dtgmath.c132 TGMACRO_REAL(log10)
543 PRINT("log10",
544 PASS_REAL_ARG_REAL_RET(log10));
/freebsd-11-stable/contrib/libstdc++/src/
H A Dcompatibility.cc456 _GLIBCXX_MATHL_WRAPPER1 (log10, GLIBCXX_3.4);
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h102 floating_point log10 (arithmetic x);
1009 // log10
1012 inline _LIBCPP_INLINE_VISIBILITY float log10(float __lcpp_x) _NOEXCEPT {return ::log10f(__lcpp_x);}
1013 inline _LIBCPP_INLINE_VISIBILITY long double log10(long double __lcpp_x) _NOEXCEPT {return ::log10l(__lcpp_x);}
1019 log10(_A1 __lcpp_x) _NOEXCEPT {return ::log10((double)__lcpp_x);}
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dvalarray_before.h155 { return log10(__t); }

Completed in 490 milliseconds

12