Searched refs:tanf (Results 1 – 25 of 89) sorted by relevance
1234
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | tan.ll | 5 %call1 = call fast float @tanf(float %call) 14 %tan = call fast float @tanf(float %call1) 19 ; CHECK: tanf 21 declare float @tanf(float)
|
D | tan-nofastmath.ll | 6 %call1 = call float @tanf(float %call) 12 ; CHECK-NEXT: %call1 = call float @tanf(float %call) 16 declare float @tanf(float)
|
/external/llvm/test/Transforms/InstCombine/ |
D | tan.ll | 5 %call1 = call fast float @tanf(float %call) 14 %tan = call fast float @tanf(float %call1) 19 ; CHECK: tanf 21 declare float @tanf(float)
|
D | tan-nofastmath.ll | 6 %call1 = call float @tanf(float %call) 12 ; CHECK-NEXT: %call1 = call float @tanf(float %call) 16 declare float @tanf(float)
|
/external/rust/crates/libm/ |
D | CHANGELOG.md | 50 - tanf 87 - tanf
|
/external/rust/crates/libm/src/math/ |
D | mod.rs | 170 mod tanf; module 284 pub use self::tanf::tanf;
|
D | tanf.rs | 28 pub fn tanf(x: f32) -> f32 { in tanf() function
|
/external/arm-optimized-routines/math/test/testcases/random/ |
D | float.tst | 10 test tanf 10000
|
/external/llvm-project/libc/AOR_v20.02/math/test/testcases/random/ |
D | float.tst | 7 test tanf 10000
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | pr1505b.ll | 38 ; CHECK: tanf 39 %tmp9 = tail call float @tanf( float %tmp6 ) ; <float> [#uses=1] 71 declare float @tanf(float)
|
/external/llvm/test/CodeGen/X86/ |
D | pr1505b.ll | 38 ; CHECK: tanf 39 %tmp9 = tail call float @tanf( float %tmp6 ) ; <float> [#uses=1] 71 declare float @tanf(float)
|
/external/eigen/test/ |
D | half_float.cpp | 227 VERIFY_IS_APPROX(numext::tan(half(0.0f)), half(tanf(0.0f))); in test_trigonometric_functions() 228 VERIFY_IS_APPROX(tan(half(0.0f)), half(tanf(0.0f))); in test_trigonometric_functions() 232 VERIFY_IS_APPROX(numext::tan(half(3.5f)), half(tanf(3.5f))); in test_trigonometric_functions()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 90 INLINE_DEF_FLOAT_SYMBOL(tanf, 1)
|
/external/llvm-project/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 90 INLINE_DEF_FLOAT_SYMBOL(tanf, 1)
|
/external/llvm/lib/Support/Windows/ |
D | explicit_symbols.inc | 90 INLINE_DEF_FLOAT_SYMBOL(tanf, 1)
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 170 float tanf(float); 296 F(tanf), F(tanl), F(tanh), F(tanhf), F(tanhl),
|
/external/llvm-project/clang/test/CodeGen/ |
D | libcall-declarations.c | 170 float tanf(float); 296 F(tanf), F(tanl), F(tanh), F(tanhf), F(tanhl),
|
D | math-libcalls.c | 498 tan(f); tanf(f); tanl(f); in foo()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | VecFuncs.def | 51 TLI_DEFINE_VECFUNC("tanf", "vtanf", 4) 116 TLI_DEFINE_VECFUNC("tanf", "__tanf4_massv", 4)
|
/external/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 143 __DEVICE__ float tan(float __x) { return ::tanf(__x); } in tan()
|
/external/skqp/include/private/ |
D | SkFloatingPoint.h | 41 #define sk_float_tan(x) tanf(x)
|
/external/llvm-project/llvm/test/Transforms/InstSimplify/ConstProp/ |
D | calls.ll | 45 declare float @tanf(float) readnone nounwind 173 %35 = call float @tanf(float 3.000000e+00)
|
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
D | matrixop.c | 171 frustumH = tanf(fovy / 360.f * PI) * nearZ; in Matrix4x4_Perspective()
|
/external/llvm-project/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 175 __DEVICE__ float tan(float __x) { return ::tanf(__x); } in tan() 494 using ::tanf;
|
/external/skia/include/private/ |
D | SkFloatingPoint.h | 48 #define sk_float_tan(x) tanf(x)
|
1234