/external/llvm-project/libc/test/src/math/ |
D | hypotf_test.cpp | 16 TEST_F(HypotfTest, SpecialNumbers) { testSpecialNumbers(&__llvm_libc::hypotf); } in TEST_F() 18 TEST_F(HypotfTest, SubnormalRange) { testSubnormalRange(&__llvm_libc::hypotf); } in TEST_F() 20 TEST_F(HypotfTest, NormalRange) { testNormalRange(&__llvm_libc::hypotf); } in TEST_F()
|
D | CMakeLists.txt | 736 libc.src.math.hypotf
|
/external/llvm-project/libc/fuzzing/math/ |
D | math_differential_fuzz.cpp | 104 TwoInputSingleOutputDiff<float, float>(&__llvm_libc::hypotf, &::hypotf, data, in LLVMFuzzerTestOneInput()
|
D | CMakeLists.txt | 23 libc.src.math.hypotf
|
/external/llvm-project/libc/src/math/ |
D | hypotf.h | 14 float hypotf(float x, float y);
|
D | hypotf.cpp | 13 float LLVM_LIBC_ENTRYPOINT(hypotf)(float x, float y) { in LLVM_LIBC_ENTRYPOINT() argument
|
D | CMakeLists.txt | 670 hypotf 672 hypotf.cpp 674 hypotf.h
|
/external/rust/crates/libm/src/math/ |
D | mod.rs | 124 mod hypotf; module 232 pub use self::hypotf::hypotf;
|
D | hypotf.rs | 6 pub fn hypotf(mut x: f32, mut y: f32) -> f32 { in hypotf() function
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 101 float hypotf(float, float); 282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
|
/external/llvm-project/clang/test/CodeGen/ |
D | libcall-declarations.c | 101 float hypotf(float, float); 282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
|
D | math-libcalls.c | 282 hypot(f,f); hypotf(f,f); hypotl(f,f); in foo()
|
/external/llvm-project/libc/config/linux/aarch64/ |
D | entrypoints.txt | 72 libc.src.math.hypotf
|
/external/llvm-project/clang/lib/Headers/openmp_wrappers/ |
D | cmath | 52 __DEVICE__ float hypot(float __x, float __y) { return ::hypotf(__x, __y); }
|
/external/OpenCL-CTS/test_common/harness/ |
D | compat.h | 187 float hypotf(float x, float y);
|
/external/llvm-project/clang/test/Headers/Inputs/include/ |
D | math.h | 75 float hypotf(float __a, float __b);
|
/external/llvm-project/libc/config/linux/x86_64/ |
D | entrypoints.txt | 115 libc.src.math.hypotf
|
/external/libcxx/include/ |
D | cmath | 209 float hypotf(float x, float y); 423 using ::hypotf;
|
/external/llvm-project/libcxx/include/ |
D | cmath | 208 float hypotf(float x, float y); 426 using ::hypotf;
|
/external/llvm-project/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 468 using ::hypotf;
|
D | __clang_hip_cmath.h | 586 using ::hypotf;
|
D | __clang_cuda_math.h | 140 __DEVICE__ float hypotf(float __a, float __b) { return __nv_hypotf(__a, __b); } in hypotf() function
|
/external/llvm-project/libc/spec/ |
D | stdc.td | 330 FunctionSpec<"hypotf", RetValSpec<FloatType>, [ArgSpec<FloatType>, ArgSpec<FloatType>]>,
|
/external/skqp/src/compute/sk/ |
D | SkDevice_Compute.cpp | 556 float const hypot = hypotf(dx,dy); in line_stroked_butt()
|
/external/rust/crates/num-traits/src/ |
D | float.rs | 2042 libm::hypotf(self, other) in hypot()
|