Searched refs:expm1f (Results 1 – 25 of 56) sorted by relevance
123
/external/rust/crates/libm/src/math/ |
D | tanhf.rs | 1 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()
|
D | sinhf.rs | 1 use super::expm1f; 18 let t = expm1f(absx); in sinhf()
|
D | coshf.rs | 2 use super::expm1f; 26 let t = expm1f(x); in coshf()
|
D | mod.rs | 106 mod expm1f; module 214 pub use self::expm1f::expm1f;
|
D | expm1f.rs | 36 pub fn expm1f(mut x: f32) -> f32 { in expm1f() function
|
/external/rust/crates/libm/ |
D | CHANGELOG.md | 41 - expm1f 72 - expm1f
|
/external/llvm-project/llvm/test/Transforms/Util/ |
D | libcalls-shrinkwrap-float.ll | 50 %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/ |
D | libcall-declarations.c | 83 float expm1f(float); 278 F(exp2f), F(exp2l), F(expm1), F(expm1f), F(expm1l),
|
/external/llvm-project/clang/test/CodeGen/ |
D | libcall-declarations.c | 83 float expm1f(float); 278 F(exp2f), F(exp2l), F(expm1), F(expm1f), F(expm1l),
|
D | math-libcalls.c | 217 expm1(f); expm1f(f); expm1l(f); in foo()
|
/external/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)
|
/external/llvm-project/clang/lib/Headers/openmp_wrappers/ |
D | cmath | 50 __DEVICE__ float expm1(float __x) { return ::expm1f(__x); }
|
/external/llvm-project/clang/test/Headers/Inputs/include/ |
D | math.h | 56 float expm1f(float __a);
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | VecFuncs.def | 38 TLI_DEFINE_VECFUNC("expm1f", "vexpm1f", 4) 171 TLI_DEFINE_VECFUNC("expm1f", "__expm1f4_massv", 4)
|
D | TargetLibraryInfo.def | 700 /// float expm1f(float x); 701 TLI_DEFINE_ENUM_INTERNAL(expm1f) 702 TLI_DEFINE_STRING_INTERNAL("expm1f")
|
/external/llvm-project/llvm/test/Transforms/SLPVectorizer/AArch64/ |
D | accelerate-vector-functions.ll | 342 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/ |
D | cmath | 189 float expm1f(float x); 413 using ::expm1f;
|
/external/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 192 ; CHECK: declare void @expm1f(...) 193 declare void @expm1f(...)
|
/external/llvm-project/libcxx/include/ |
D | cmath | 188 float expm1f(float x); 416 using ::expm1f;
|
/external/llvm-project/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 459 using ::expm1f;
|
D | __clang_hip_cmath.h | 577 using ::expm1f;
|
D | __clang_cuda_math.h | 111 __DEVICE__ float expm1f(float __a) { return __nv_expm1f(__a); } in expm1f() function
|
/external/llvm-project/llvm/test/Transforms/InferFunctionAttrs/ |
D | no-proto.ll | 318 ; CHECK: declare void @expm1f(...) 319 declare void @expm1f(...)
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 428 /// float expm1f(float x); 429 TLI_DEFINE_ENUM_INTERNAL(expm1f) 430 TLI_DEFINE_STRING_INTERNAL("expm1f")
|
/external/rust/crates/num-traits/src/ |
D | float.rs | 2078 libm::expm1f(self) in exp_m1()
|
123