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

123

/openbsd-current/lib/libm/arch/amd64/
H A De_log10.S11 ENTRY(log10)
12 RETGUARD_SETUP(log10, r11)
18 RETGUARD_CHECK(log10, r11)
20 END(log10)
/openbsd-current/lib/libm/arch/i387/
H A De_log10.S9 ENTRY(log10)
14 END(log10)
/openbsd-current/regress/lib/libm/fpaccuracy/
H A Dlog10.c1 /* $OpenBSD: log10.c,v 1.1 2009/04/09 01:24:43 martynas Exp $ */
25 #define F log10
26 #define Fs "log10"
H A DMakefile6 j1.c lgamma.c log.c log10.c pow2_x.c powx_275.c sin.c \
/openbsd-current/lib/libm/src/
H A De_log10.c13 /* log10(x)
17 * Let log10_2hi = leading 40 bits of log10(2) and
18 * log10_2lo = log10(2) - log10_2hi,
24 * log10(x) := n*log10_2hi + (n*log10_2lo + ivln10*log(x))
27 * To guarantee log10(10**n)=n, where 10**n is normal, the rounding
31 * log10 is monotonic at all binary break points.
34 * log10(x) is NaN with signal if x < 0;
35 * log10(+INF) is +INF with no signal; log10(0) is -INF with signal;
36 * log10(Na
60 log10(double x) function
85 DEF_STD(log10); variable
86 LDBL_MAYBE_UNUSED_CLONE(log10); variable
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/libmath/
H A Dstubs.c165 return (float) log10(x);
173 return log10((double) x);
H A Dmathconf.h287 # define log10f(x) log10 (x)
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/26_numerics/
H A Dvalarray_name_lookup.cc85 Number log10(Number);
117 v = log10(u);
/openbsd-current/gnu/gcc/libstdc++-v3/include/c_compatibility/
H A Dmath.h50 using std::log10;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_compatibility/
H A Dmath.h50 using std::log10;
/openbsd-current/gnu/gcc/libstdc++-v3/libmath/
H A Dstubs.c335 return (float) log10(x);
343 return log10((double) x);
H A Dmathconf.h282 # define log10f(x) log10 (x)
/openbsd-current/gnu/gcc/libstdc++-v3/include/c/
H A Dstd_cmath.h60 #undef log10 macro
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c/
H A Dstd_cmath.h60 #undef log10 macro
/openbsd-current/gnu/llvm/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h124 __DEVICE__ double log10(double);
125 __DEVICE__ float log10(float);
245 using ::log10;
/openbsd-current/regress/lib/libm/cephes/
H A Dtestvect.c67 double log10 (double);
196 {"log10", log10, &NAN, &NAN, 0},
197 {"log10", log10, &ZERO, &MINF, 0},
198 {"log10", log10, &MZERO, &MINF, 0},
199 {"log10", log10, &ONE, &ZERO, 0},
200 {"log10", log1
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/c_std/
H A Dstd_cmath.h71 #undef log10 macro
494 using ::log10;
498 log10(float __x) { return __gnu_cxx::__c99_binding::log10f(__x); } function in namespace:std
501 log10(float __x) { return ::log10(static_cast<double>(__x)); }
506 log10(long double __x) { return ::log10l(__x); } function in namespace:std
509 log10(long double __x) { return ::log10(static_cast<double>(__x)); } function in namespace:std
514 log10(_Tp __x) function in namespace:std
515 { return ::log10(static_cas
[all...]
/openbsd-current/regress/lib/libm/msun/
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());
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h73 using std::tr1::log10;
/openbsd-current/gnu/gcc/gcc/
H A Dfp-test.c58 extern double log10 (double);
242 d1 = log10 (d2);
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dfp-test.c58 extern double log10 (double);
242 d1 = log10 (d2);
/openbsd-current/gnu/gcc/libstdc++-v3/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
/openbsd-current/gnu/usr.bin/binutils/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
/openbsd-current/gnu/gcc/gcc/cp/
H A Dcfns.h191 "log10",
/openbsd-current/usr.bin/lex/
H A Dbuf.c106 (int) (1 + log10(abs(lineno))) + /* line number */

Completed in 206 milliseconds

123