Searched refs:log1pf (Results 1 – 25 of 33) sorted by relevance
12
/third_party/musl/src/math/i386/ |
D | log1pf.s | 1 .global log1pf symbol 2 .type log1pf,@function 3 log1pf: label
|
/third_party/musl/src/math/ |
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()
|
D | acoshf.c | 20 return log1pf(x-1 + sqrtf((x-1)*(x-1)+2*(x-1))); in acoshf()
|
D | asinhf.c | 22 x = log1pf(x + x*x/(sqrtf(x*x+1)+1)); in asinhf()
|
D | log1pf.c | 24 float log1pf(float x) in log1pf() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
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()
|
D | acoshf.c | 20 return log1pf(x-1 + sqrtf((x-1)*(x-1)+2*(x-1))); in acoshf()
|
D | asinhf.c | 22 x = log1pf(x + x*x/(sqrtf(x*x+1)+1)); in asinhf()
|
D | log1pf.c | 24 float log1pf(float x) in log1pf() function
|
/third_party/musl/libc-test/src/math/ |
D | log1pf.c | 26 y = log1pf(p->x); in main()
|
D | test_src_math.gni | 116 "log1pf",
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | VecFuncs.def | 41 TLI_DEFINE_VECFUNC("log1pf", "vlog1pf", 4) 96 TLI_DEFINE_VECFUNC("log1pf", "__log1pf4_massv", 4)
|
D | TargetLibraryInfo.def | 949 /// float log1pf(float x); 950 TLI_DEFINE_ENUM_INTERNAL(log1pf) 951 TLI_DEFINE_STRING_INTERNAL("log1pf")
|
/third_party/musl/ndk_musl_include/ |
D | math.h | 268 float log1pf(float);
|
/third_party/musl/libc-test/src/api/ |
D | math.c | 157 {float(*p)(float) = log1pf;} in f()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | math.h | 268 float log1pf(float);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | math.h | 268 float log1pf(float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | math.h | 268 float log1pf(float);
|
/third_party/musl/include/ |
D | math.h | 268 float log1pf(float);
|
/third_party/musl/libc-test/src/math/gen/ |
D | functions.h | 92 T(log1pf, f_f)
|
D | mplibm.c | 160 int mplog1pf(struct t *t) { return mpf1(t, log1pf); } in mplog1pf()
|
/third_party/rust/crates/num-traits/src/ |
D | float.rs | 2100 libm::log1pf as ln_1p(self) -> Self;
|
/third_party/musl/ |
D | libc.map.txt | 1061 log1pf;
|
/third_party/musl/porting/liteos_a/kernel/ |
D | musl.gni | 198 "$MUSLPORTINGDIR/src/math/log1pf.c",
|
/third_party/optimized-routines/math/test/ |
D | mathtest.c | 250 TFUNC(at_s,rt_s, log1pf, 2*ULPUNIT),
|
12