Searched refs:expm1f (Results 1 – 25 of 35) sorted by relevance
12
/third_party/musl/src/math/ |
D | tanhf.c | 22 t = expm1f(2*x); in tanhf() 27 t = expm1f(2*x); in tanhf() 31 t = expm1f(-2*x); in tanhf()
|
D | coshf.c | 20 t = expm1f(x); in coshf()
|
D | sinhf.c | 19 t = expm1f(absx); in sinhf()
|
D | expm1f.c | 31 float expm1f(float x) in expm1f() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | tanhf.c | 22 t = expm1f(2*x); in tanhf() 27 t = expm1f(2*x); in tanhf() 31 t = expm1f(-2*x); in tanhf()
|
D | coshf.c | 20 t = expm1f(x); in coshf()
|
D | sinhf.c | 19 t = expm1f(absx); in sinhf()
|
D | expm1f.c | 31 float expm1f(float x) in expm1f() function
|
/third_party/musl/libc-test/src/math/ |
D | expm1f.c | 26 y = expm1f(p->x); in main()
|
D | test_src_math.gni | 56 "expm1f",
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | VecFuncs.def | 38 TLI_DEFINE_VECFUNC("expm1f", "vexpm1f", 4) 90 TLI_DEFINE_VECFUNC("expm1f", "__expm1f4_massv", 4)
|
D | TargetLibraryInfo.def | 673 /// float expm1f(float x); 674 TLI_DEFINE_ENUM_INTERNAL(expm1f) 675 TLI_DEFINE_STRING_INTERNAL("expm1f")
|
/third_party/boost/boost/math/ |
D | tr1_c_macros.ipp | 121 #ifdef expm1f 122 #undef expm1f 124 #define expm1f boost_expm1f
|
/third_party/glib/glib/gnulib/ |
D | gnulib_math.h.in | 726 # undef expm1f 727 # define expm1f rpl_expm1f macro 729 _GL_FUNCDECL_RPL (expm1f, float, (float x)); 730 _GL_CXXALIAS_RPL (expm1f, float, (float x)); 733 _GL_FUNCDECL_SYS (expm1f, float, (float x)); 735 _GL_CXXALIAS_SYS (expm1f, float, (float x)); 737 _GL_CXXALIASWARN (expm1f); 739 # undef expm1f 741 _GL_WARN_ON_USE (expm1f, "expm1f is unportable - " 742 "use gnulib module expm1f for portability");
|
/third_party/musl/ndk_musl_include/ |
D | math.h | 200 float expm1f(float);
|
/third_party/musl/libc-test/src/api/ |
D | math.c | 103 {float(*p)(float) = expm1f;} in f()
|
/third_party/boost/libs/math/doc/tr1/ |
D | c99_ref.qbk | 39 float expm1f(float x); 183 float expm1f(float x);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | math.h | 200 float expm1f(float);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | math.h | 200 float expm1f(float);
|
/third_party/musl/include/ |
D | math.h | 200 float expm1f(float);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | math.h | 200 float expm1f(float);
|
/third_party/boost/boost/math/special_functions/ |
D | expm1.hpp | 306 inline float expm1(float x, const policies::policy<>&){ return ::expm1f(x); } in expm1()
|
/third_party/musl/libc-test/src/math/gen/ |
D | functions.h | 62 T(expm1f, f_f)
|
D | mplibm.c | 130 int mpexpm1f(struct t *t) { return mpf1(t, expm1f); } in mpexpm1f()
|
/third_party/boost/libs/math/test/ |
D | test_tr1.c | 125 …check_close_f(expm1f(0.582029759883880615234375e0), 0.7896673415707786528734865994546559029663e0f,… in test_values_f() 127 …check_close_f(expm1f(-0.2047410048544406890869140625e-1), -0.2026592921724753704129022027337835687… in test_values_f()
|
12