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

12

/freebsd-10-stable/lib/msun/i387/
H A De_log10.S39 ENTRY(log10) function
44 END(log10)
/freebsd-10-stable/contrib/libstdc++/include/c_compatibility/
H A Dmath.h50 using std::log10;
/freebsd-10-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-10-stable/contrib/libstdc++/include/c/
H A Dstd_cmath.h60 #undef log10 macro
/freebsd-10-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.h258 double log10(double);
H A Dmath_private.h699 #define __ieee754_log10 log10
/freebsd-10-stable/lib/msun/tests/
H A Dlogarithm_test.c89 test(log10, x, result, exceptmask, excepts); \
174 test(log10, 1.0, 0.0, ALL_STD_EXCEPT, 0);
231 test_tol(log10, tests[i].x, tests[i].log10x, DBL_ULP());
/freebsd-10-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-10-stable/contrib/libstdc++/include/tr1/
H A Dmath.h73 using std::tr1::log10;
/freebsd-10-stable/contrib/gcc/
H A Dfp-test.c58 extern double log10 (double);
242 d1 = log10 (d2);
/freebsd-10-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-10-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-10-stable/lib/msun/
H A DSymbol.map48 log10;
/freebsd-10-stable/include/
H A Dtgmath.h184 #define log10(x) __tg_simple(x, log10) macro
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp152 case Intrinsic::log10:
153 EnsureFPIntrinsicsExist(M, I, "log10f", "log10", "log10l");
514 case Intrinsic::log10: {
515 ReplaceFPIntrinsicWithCall(CI, "log10f", "log10", "log10l");
H A DBasicTargetTransformInfo.cpp454 case Intrinsic::log10: ISD = ISD::FLOG10; break;
/freebsd-10-stable/tools/regression/include/tgmath/
H A Dtgmath.c132 TGMACRO_REAL(log10)
543 PRINT("log10",
544 PASS_REAL_ARG_REAL_RET(log10));
/freebsd-10-stable/usr.bin/xlint/llib/
H A Dllib-lstdc110 double (log10)(double x);
H A Dllib-lposix187 double (log10)(double x);
/freebsd-10-stable/contrib/libstdc++/src/
H A Dcompatibility.cc456 _GLIBCXX_MATHL_WRAPPER1 (log10, GLIBCXX_3.4);
/freebsd-10-stable/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h347 /// double log10(double x);
348 log10, enumerator in enum:llvm::LibFunc::Func
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h928 // log10
936 __tg_log10(double __x) {return log10(__x);}
942 #undef log10 macro
943 #define log10(__x) __tg_log10(__tg_promote1((__x))(__x)) macro
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp1185 case Intrinsic::log10:
1236 return Name == "log" || Name == "log10";
1379 case Intrinsic::log10:
1380 return ConstantFoldFP(log10, V, Ty);
1432 else if (Name == "log10" && V > 0 && TLI->has(LibFunc::log10))
1433 return ConstantFoldFP(log10, V, Ty);

Completed in 154 milliseconds

12