| /third_party/musl/src/math/i386/ |
| H A D | logf.s | 1 .global logf 2 .type logf,@function 3 logf: label
|
| /third_party/optimized-routines/math/test/ |
| H A D | runulp.sh | 96 t logf 0 0xffff0000 10000 97 t logf 0x1p-4 0x1p4 50000 98 t logf 0 inf 50000 291 logf __s_logf $runs 292 logf __v_logf $runv 293 logf __vn_logf $runvn 294 logf _ZGVnN4v_logf $runvn
|
| /third_party/ltp/testcases/kernel/syscalls/syslog/ |
| H A D | syslog08 | 92 for logf in messages maillog 94 if [ ! -e /var/log/$logf ]; then 95 tst_resm TBROK "/var/log/$logf no such log file"
|
| /third_party/optimized-routines/math/ |
| H A D | logf.c | 27 logf (float x) in logf() function 77 strong_alias (logf, __logf_finite) 78 hidden_alias (logf, __ieee754_logf)
|
| H A D | v_logf.c | 36 return v_call_f32 (logf, x, y, cmp); in specialcase() 41 V_NAME(logf) (v_f32_t x) in logf() function
|
| /third_party/musl/src/math/ |
| H A D | lgammaf_r.c | 123 return -logf(x); in __lgammaf_r() 134 nadj = logf(pi/(t*x)); in __lgammaf_r() 143 r = -logf(x); in __lgammaf_r() 202 r += logf(z); in __lgammaf_r() 206 t = logf(x); in __lgammaf_r() 212 r = x*(logf(x)-1.0f); in __lgammaf_r()
|
| H A D | asinhf.c | 16 x = logf(x) + 0.693147180559945309417232121458176568f; in asinhf() 19 x = logf(2*x + 1/(sqrtf(x*x+1)+x)); in asinhf()
|
| H A D | acoshf.c | 23 return logf(2*x - 1/(x+sqrtf(x*x-1))); in acoshf() 25 return logf(x) + 0.693147180559945309417232121458176568f; in acoshf()
|
| H A D | logf.c | 27 float logf(float x) in logf() function
|
| /third_party/musl/porting/liteos_a/kernel/src/math/ |
| H A D | lgammaf_r.c | 123 return -logf(x); in __lgammaf_r() 134 nadj = logf(pi/(t*x)); in __lgammaf_r() 143 r = -logf(x); in __lgammaf_r() 202 r += logf(z); in __lgammaf_r() 206 t = logf(x); in __lgammaf_r() 212 r = x*(logf(x)-1.0f); in __lgammaf_r()
|
| H A D | asinhf.c | 16 x = logf(x) + 0.693147180559945309417232121458176568f; in asinhf() 19 x = logf(2*x + 1/(sqrtf(x*x+1)+x)); in asinhf()
|
| H A D | acoshf.c | 23 return logf(2*x - 1/(x+sqrtf(x*x-1))); in acoshf() 25 return logf(x) + 0.693147180559945309417232121458176568f; in acoshf()
|
| H A D | logf.c | 27 float logf(float x) in logf() function
|
| /third_party/node/deps/v8/third_party/test262-harness/src/ |
| H A D | test262.py | 513 self.logf.write(s + "\n") 555 self.logf = open(logname, "w") 598 self.logf.write("=== %s was expected to fail in %s, but didn't === \n" % (name, mode)) 599 self.logf.write("--- expected error: %s ---\n" % result.case.GetNegativeType()) 600 result.WriteOutput(self.logf) 602 self.logf.write("=== %s failed in %s === \n" % (name, mode)) 603 result.WriteOutput(self.logf) 604 self.logf.write("===\n") 606 self.logf.write("%s failed in %s as expected \n" % (name, mode)) 608 self.logf [all...] |
| /third_party/mesa3d/src/gallium/drivers/etnaviv/ |
| H A D | etnaviv_util.h | 92 return etna_float_to_fixp55(logf((float)width) * RCPLOG2); in etna_log2_fixp55() 99 return etna_float_to_fixp88(logf((float)width) * RCPLOG2); in etna_log2_fixp88()
|
| /third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
| H A D | math_log_test.cpp | 41 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the logf interface. 48 bool testResult = FloatUlpCmp(g_logfData[i].expected, logf(g_logfData[i].input), 1); in HWTEST_F() 60 EXPECT_FLOAT_EQ(1.0f, logf(static_cast<float>(M_E))); in HWTEST_F()
|
| H A D | math_lgamma_test.cpp | 28 EXPECT_FLOAT_EQ(logf(1.0f), lgammaf(2.0f)); in HWTEST_F()
|
| /third_party/node/deps/v8/third_party/test262-harness/test/ |
| H A D | test_test262.py | 92 test_suite.logf = fake_log 158 test_suite.logf = fake_log 199 test_suite.logf = fake_log
|
| /third_party/ffmpeg/libavfilter/ |
| H A D | avf_avectorscope.c | 316 max = logf(1 + max) / logf(2); in filter_frame() 351 src[0] = FFSIGN(src[0]) * logf(1 + FFABS(src[0])) / logf(2); in filter_frame() 352 src[1] = FFSIGN(src[1]) * logf(1 + FFABS(src[1])) / logf(2); in filter_frame()
|
| H A D | vf_grayworld.c | 101 lms[0] = lms[0] > 0.f ? logf(lms[0]) : -1024.f; in rgb2lab() 102 lms[1] = lms[1] > 0.f ? logf(lms[1]) : -1024.f; in rgb2lab() 103 lms[2] = lms[2] > 0.f ? logf(lms[2]) : -1024.f; in rgb2lab()
|
| /third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
| H A D | lp_test_arit.c | 300 WRAP(logf) 306 #define logf wrap_logf macro 321 {"log", &lp_build_log_safe, &logf, log2_values, ARRAY_SIZE(log2_values), 20.0 },
|
| /third_party/musl/src/complex/ |
| H A D | clogf.c | 11 return CMPLXF(logf(r), phi); in clogf()
|
| H A D | catanf.c | 103 w = CMPLXF(w, 0.25f * logf(a)); in catanf()
|
| /third_party/ffmpeg/libavutil/ |
| H A D | ffmath.h | 64 return expf(logf(x) * y); in ff_fast_powf()
|
| /third_party/musl/libc-test/src/math/ |
| H A D | logf.c | 6 #include "ucb/logf.h" 7 #include "sanity/logf.h" 8 #include "special/logf.h" 27 y = logf(p->x); in main() 31 printf("%s:%d: bad fp exception: %s logf(%a)=%a, want %s", in main() 38 printf("%s:%d: %s logf(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|