Home
last modified time | relevance | path

Searched refs:expm1f (Results 1 – 25 of 56) sorted by relevance

123

/external/rust/crates/libm/src/math/
Dtanhf.rs1 use super::expm1f;
18 let t = expm1f(2. * x); in tanhf()
23 let t = expm1f(2. * x); in tanhf()
27 let t = expm1f(-2. * x); in tanhf()
Dsinhf.rs1 use super::expm1f;
18 let t = expm1f(absx); in sinhf()
Dcoshf.rs2 use super::expm1f;
26 let t = expm1f(x); in coshf()
Dmod.rs106 mod expm1f; module
214 pub use self::expm1f::expm1f;
Dexpm1f.rs36 pub fn expm1f(mut x: f32) -> f32 { in expm1f() function
/external/rust/crates/libm/
DCHANGELOG.md41 - expm1f
72 - expm1f
/external/llvm-project/llvm/test/Transforms/Util/
Dlibcalls-shrinkwrap-float.ll50 %call_5 = call float @expm1f(float %value)
54 ; CHECK-NEXT: %call_5 = call float @expm1f(float %value)
65 declare float @expm1f(float)
/external/clang/test/CodeGen/
Dlibcall-declarations.c83 float expm1f(float);
278 F(exp2f), F(exp2l), F(expm1), F(expm1f), F(expm1l),
/external/llvm-project/clang/test/CodeGen/
Dlibcall-declarations.c83 float expm1f(float);
278 F(exp2f), F(exp2l), F(expm1), F(expm1f), F(expm1l),
Dmath-libcalls.c217 expm1(f); expm1f(f); expm1l(f); in foo()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DVecFuncs.def38 TLI_DEFINE_VECFUNC("expm1f", "vexpm1f", 4)
90 TLI_DEFINE_VECFUNC("expm1f", "__expm1f4_massv", 4)
/external/llvm-project/clang/lib/Headers/openmp_wrappers/
Dcmath50 __DEVICE__ float expm1(float __x) { return ::expm1f(__x); }
/external/llvm-project/clang/test/Headers/Inputs/include/
Dmath.h56 float expm1f(float __a);
/external/llvm-project/llvm/include/llvm/Analysis/
DVecFuncs.def38 TLI_DEFINE_VECFUNC("expm1f", "vexpm1f", 4)
171 TLI_DEFINE_VECFUNC("expm1f", "__expm1f4_massv", 4)
DTargetLibraryInfo.def700 /// float expm1f(float x);
701 TLI_DEFINE_ENUM_INTERNAL(expm1f)
702 TLI_DEFINE_STRING_INTERNAL("expm1f")
/external/llvm-project/llvm/test/Transforms/SLPVectorizer/AArch64/
Daccelerate-vector-functions.ll342 declare float @expm1f(float) readonly
362 ; NOACCELERATE-NEXT: [[TMP1:%.*]] = tail call fast float @expm1f(float [[VECEXT]])
365 ; NOACCELERATE-NEXT: [[TMP2:%.*]] = tail call fast float @expm1f(float [[VECEXT_1]])
368 ; NOACCELERATE-NEXT: [[TMP3:%.*]] = tail call fast float @expm1f(float [[VECEXT_2]])
371 ; NOACCELERATE-NEXT: [[TMP4:%.*]] = tail call fast float @expm1f(float [[VECEXT_3]])
378 %1 = tail call fast float @expm1f(float %vecext)
381 %2 = tail call fast float @expm1f(float %vecext.1)
384 %3 = tail call fast float @expm1f(float %vecext.2)
387 %4 = tail call fast float @expm1f(float %vecext.3)
/external/libcxx/include/
Dcmath189 float expm1f(float x);
413 using ::expm1f;
/external/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll192 ; CHECK: declare void @expm1f(...)
193 declare void @expm1f(...)
/external/llvm-project/libcxx/include/
Dcmath188 float expm1f(float x);
416 using ::expm1f;
/external/llvm-project/clang/lib/Headers/
D__clang_cuda_cmath.h459 using ::expm1f;
D__clang_hip_cmath.h577 using ::expm1f;
D__clang_cuda_math.h111 __DEVICE__ float expm1f(float __a) { return __nv_expm1f(__a); } in expm1f() function
/external/llvm-project/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll318 ; CHECK: declare void @expm1f(...)
319 declare void @expm1f(...)
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def428 /// float expm1f(float x);
429 TLI_DEFINE_ENUM_INTERNAL(expm1f)
430 TLI_DEFINE_STRING_INTERNAL("expm1f")
/external/rust/crates/num-traits/src/
Dfloat.rs2078 libm::expm1f(self) in exp_m1()

123