Searched refs:atanf (Results 1 – 25 of 73) sorted by relevance
123
/external/llvm/test/Transforms/InstCombine/ |
D | tan-nofastmath.ll | 5 %call = call float @atanf(float %x) 11 ; CHECK: %call = call float @atanf(float %x) 17 declare float @atanf(float)
|
D | tan.ll | 4 %call = call fast float @atanf(float %x) 22 declare float @atanf(float)
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | tan-nofastmath.ll | 5 %call = call float @atanf(float %x) 11 ; CHECK: %call = call float @atanf(float %x) 17 declare float @atanf(float)
|
D | tan.ll | 4 %call = call fast float @atanf(float %x) 22 declare float @atanf(float)
|
D | win-math.ll | 41 ; MSVCXX-NOT: float @atanf 43 ; MSVC19-NOT: float @atanf
|
/external/rust/crates/libm/src/math/ |
D | atan2f.rs | 16 use super::atanf; 37 return atanf(y); in atan2f() 83 atanf(fabsf(y / x)) in atan2f()
|
D | mod.rs | 84 mod atanf; module 190 pub use self::atanf::atanf;
|
D | atanf.rs | 45 pub fn atanf(mut x: f32) -> f32 { in atanf() function
|
/external/rust/crates/libm/ |
D | CHANGELOG.md | 34 - atanf 62 - atanf
|
/external/llvm-project/clang/test/CodeGen/ |
D | libcalls.c | 87 float atanf_ = atanf(f); in test_builtins()
|
D | libcall-declarations.c | 53 float atanf(float); 272 F(asinhf), F(asinhl), F(atan), F(atanf), F(atanl),
|
D | math-libcalls.c | 127 atan(f); atanf(f); atanl(f); in foo()
|
/external/clang/test/CodeGen/ |
D | libcalls.c | 88 float atanf_ = atanf(f); in test_builtins()
|
D | libcall-declarations.c | 53 float atanf(float); 272 F(asinhf), F(asinhl), F(atan), F(atanf), F(atanl),
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 77 INLINE_DEF_FLOAT_SYMBOL(atanf, 1)
|
/external/llvm-project/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 77 INLINE_DEF_FLOAT_SYMBOL(atanf, 1)
|
/external/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 77 INLINE_DEF_FLOAT_SYMBOL(atanf, 1)
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | VecFuncs.def | 54 TLI_DEFINE_VECFUNC("atanf", "vatanf", 4) 122 TLI_DEFINE_VECFUNC("atanf", "__atanf4_massv", 4)
|
/external/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 53 __DEVICE__ float atan(float __x) { return ::atanf(__x); } in atan()
|
/external/llvm-project/llvm/test/Transforms/InstSimplify/ConstProp/ |
D | calls.ll | 28 declare float @atanf(float) readnone nounwind 122 %19 = call float @atanf(float 3.000000e+00)
|
/external/llvm-project/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 47 __DEVICE__ float atan(float __x) { return ::atanf(__x); } in atan() 448 using ::atanf;
|
/external/llvm-project/llvm/test/Transforms/DCE/ |
D | calls-errno.ll | 27 declare float @atanf(float) nounwind
|
/external/llvm-project/clang/test/Headers/Inputs/include/ |
D | math.h | 20 float atanf(float __a);
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | VecFuncs.def | 54 TLI_DEFINE_VECFUNC("atanf", "vatanf", 4) 203 TLI_DEFINE_VECFUNC("atanf", "__atanf4_massv", 4)
|
/external/swiftshader/src/Reactor/ |
D | EmulatedIntrinsics.cpp | 191 return call4(atanf, x); in Atan()
|
123