| /src/lib/libm/src/ |
| w_log10.c | 19 * wrapper log10(X) 32 __weak_alias(log10, _log10) 34 log10(double x) /* wrapper log10 */ 44 return __kernel_standard(x,x,18); /* log10(0) */ 46 return __kernel_standard(x,x,19); /* log10(x<0) */
|
| namespace.h | 67 #define log10 _log10 macro
|
| /src/external/lgpl3/mpc/dist/src/ |
| log10.c | 25 mpfr_const_log10 (mpfr_ptr log10) 27 mpfr_set_ui (log10, 10, MPFR_RNDN); /* exact since prec >= 4 */ 28 mpfr_log (log10, log10, MPFR_RNDN); /* error <= 1/2 ulp */ 38 mpfr_t log10; local 47 mpfr_init2 (log10, 2); 54 mpfr_set_prec (log10, prec); 67 mpfr_const_log10 (log10); 68 mpfr_div (mpc_imagref (log), mpc_imagref (log), log10, MPFR_RNDN); local 82 /* log10 not yet computed * 84 mpfr_div (mpc_realref (log), mpc_realref (log), log10, MPFR_RNDN); local [all...] |
| Makefile.am | 27 get_version.c get_x.c imag.c init2.c init3.c inp_str.c log.c log10.c \
|
| /src/lib/libm/noieee_src/ |
| n_log10.c | 36 static char sccsid[] = "@(#)log10.c 8.1 (Berkeley) 6/4/93"; 40 /* LOG10(X) 51 * log10(x) = --------- or [1/log(10)]*log(x) 62 * log10(x) is NaN with signal if x < 0; 63 * log10(+INF) is +INF with no signal; log10(0) is -INF with signal; 64 * log10(NaN) is that NaN with no signal. 67 * log10(X) returns the exact log10(x) nearly rounded. In a test run 94 __weak_alias(log10, _log10 [all...] |
| /src/sys/dev/dtv/ |
| dtv_math.c | 39 * dtv_intlog10 -- return an approximation to log10(x) * 1<<24, 144 * Multiply t by log10(2) to get the final result. 146 * log10(2) is approximately 643/2136 We divide before 188 uint32_t desired = (uint32_t)(log10((double)x)
|
| /src/tests/lib/libm/ |
| t_log.c | 176 * log10(3) 189 atf_tc_set_md_var(tc, "descr", "Test log10/f/l on invalid inputs"); 197 CHECK_NAN(i, log10, logf_invalid[i]); 202 CHECK_NAN(i, log10, log_invalid[i]); 214 atf_tc_set_md_var(tc, "descr", "Test log10/f/l on zero"); 220 CHECK_EQ(0, log10, +0., -HUGE_VAL); 224 CHECK_EQ(1, log10, -0., -HUGE_VAL); 231 atf_tc_set_md_var(tc, "descr", "Test log10/f/l exact cases"); 238 ATF_CHECK_EQ(signbit(log10(1)), 0); 246 CHECK_EQ(i, log10, x, y) [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
| math_stubs_float.cc | 169 return (float) log10(x);
|
| math_stubs_long_double.cc | 169 return log10((double) x);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/ |
| ctfloat.h | 36 static real_t log10(real_t x);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
| math_stubs_float.cc | 169 return (float) log10(x);
|
| math_stubs_long_double.cc | 169 return log10((double) x);
|
| /src/external/mpl/bind/dist/tests/isc/ |
| histo_test.c | 247 uint log10 = 1; local 257 if (log10 < digits) { 258 log10 += 1; 260 assert_int_equal(log10, digits);
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| __clang_cuda_math_forward_declares.h | 124 __DEVICE__ double log10(double); 125 __DEVICE__ float log10(float); 245 using ::log10;
|
| /src/external/lgpl3/mpc/dist/tests/ |
| Makefile.am | 62 log10.dsc mul.dsc mul_2si.dsc mul_2ui.dsc mul_fr.dsc mul_i.dsc \ 72 log.dat log10.dat mul.dat mul_fr.dat neg.dat norm.dat pow.dat \
|
| /src/external/gpl3/gcc/dist/gcc/ |
| fp-test.cc | 57 extern double log10 (double); 241 d1 = log10 (d2);
|
| /src/external/gpl3/gcc/dist/gcc/ginclude/ |
| tgmath.h | 101 #define log10(x) __TGMATH_REAL(x, log10) macro
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| fp-test.cc | 57 extern double log10 (double); 241 d1 = log10 (d2);
|
| /src/external/gpl3/gcc.old/dist/gcc/ginclude/ |
| tgmath.h | 101 #define log10(x) __TGMATH_REAL(x, log10) macro
|
| /src/tests/lib/lua/libm/ |
| h_lualibm.c | 68 TEST(log10(100.0));
|
| lualibm.lua | 74 test("log10(100.0)", lm.log10(100.0))
|
| /src/external/lgpl3/mpc/dist/tools/mpcheck/ |
| mpcheck-double.c | 122 #define FOO log10
|
| mpcheck-float.c | 134 #define FOO log10
|
| mpcheck-float128.c | 139 #define FOO log10
|
| mpcheck-longdouble.c | 122 #define FOO log10
|