Searched refs:log1pf (Results 1 - 20 of 20) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
H A D | math_log1p_test.cpp | 72 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the log1pf interface. 79 bool testResult = FloatUlpCmp(g_log1pfData[i].expected, log1pf(g_log1pfData[i].input), 1); in HWTEST_F() 91 EXPECT_EQ(-HUGE_VAL, log1pf(-1.0f)); in HWTEST_F() 101 EXPECT_TRUE(isnan(log1pf(-HUGE_VAL))); in HWTEST_F() 102 EXPECT_TRUE(isnan(log1pf(nanf("")))); in HWTEST_F() 112 EXPECT_TRUE(isinf(log1pf(HUGE_VAL))); in HWTEST_F() 122 EXPECT_DOUBLE_EQ(1.0f, log1pf(static_cast<float>(M_E) - 1.0f)); in HWTEST_F()
|
/third_party/musl/src/math/i386/ |
H A D | log1pf.s | 1 .global log1pf 2 .type log1pf,@function 3 log1pf: label
|
/third_party/musl/src/math/ |
H A D | atanhf.c | 21 y = 0.5f*log1pf(2*y + 2*y*y/(1-y)); in atanhf() 25 y = 0.5f*log1pf(2*(y/(1-y))); in atanhf()
|
H A D | asinhf.c | 22 x = log1pf(x + x*x/(sqrtf(x*x+1)+1)); in asinhf()
|
H A D | acoshf.c | 20 return log1pf(x-1 + sqrtf((x-1)*(x-1)+2*(x-1))); in acoshf()
|
H A D | log1pf.c | 24 float log1pf(float x) in log1pf() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
H A D | atanhf.c | 21 y = 0.5f*log1pf(2*y + 2*y*y/(1-y)); in atanhf() 25 y = 0.5f*log1pf(2*(y/(1-y))); in atanhf()
|
H A D | asinhf.c | 22 x = log1pf(x + x*x/(sqrtf(x*x+1)+1)); in asinhf()
|
H A D | acoshf.c | 20 return log1pf(x-1 + sqrtf((x-1)*(x-1)+2*(x-1))); in acoshf()
|
H A D | log1pf.c | 24 float log1pf(float x) in log1pf() function
|
/third_party/musl/libc-test/src/math/ |
H A D | log1pf.c | 6 #include "sanity/log1pf.h" 7 #include "special/log1pf.h" 26 y = log1pf(p->x); in main() 31 printf("%s:%d: bad fp exception: %s log1pf(%a)=%a, want %s", in main() 39 printf("%s:%d: %s log1pf(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | math.h | 268 float log1pf(float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | math.h | 268 float log1pf(float);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | math.h | 268 float log1pf(float);
|
/third_party/musl/include/ |
H A D | math.h | 268 float log1pf(float);
|
/third_party/musl/libc-test/src/api/ |
H A D | math.c | 157 {float(*p)(float) = log1pf;} in f()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_math.cpp | 496 benchmark::DoNotOptimize(log1pf(a)); in Bm_function_Log1pf()
|
/third_party/musl/libc-test/src/math/gen/ |
H A D | mplibm.c | 160 int mplog1pf(struct t *t) { return mpf1(t, log1pf); } in mplog1pf()
|
/third_party/optimized-routines/math/test/ |
H A D | mathtest.c | 250 TFUNC(at_s,rt_s, log1pf, 2*ULPUNIT),
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 33847 extern float log1pf (float __x) throw (); extern float __log1pf (float __x) throw (); 35286 using ::log1pf; [all...] |
Completed in 35 milliseconds