Searched refs:ilogbf (Results 1 – 25 of 42) sorted by relevance
12
/external/llvm-project/libc/test/src/math/ |
D | ilogbf_test.cpp | 19 testSpecialNumbers<float>(&__llvm_libc::ilogbf); in TEST_F() 23 testPowersOfTwo<float>(&__llvm_libc::ilogbf); in TEST_F() 27 testSomeIntegers<float>(&__llvm_libc::ilogbf); in TEST_F() 31 testSubnormalRange<float>(&__llvm_libc::ilogbf); in TEST_F() 35 testNormalRange<float>(&__llvm_libc::ilogbf); in TEST_F()
|
D | CMakeLists.txt | 397 libc.src.math.ilogbf
|
/external/OpenCL-CTS/test_common/harness/ |
D | compat.h | 163 int ilogbf(float x); 385 se exp + ilogbf((float)0x##int) \ 386 - ilogbf((float)(0x##int##fract##UL)))
|
D | msvc9.c | 175 int ilogbf(float x) in ilogbf() function
|
/external/llvm-project/libc/src/math/ |
D | ilogbf.h | 14 int ilogbf(float x);
|
D | ilogbf.cpp | 14 int LLVM_LIBC_ENTRYPOINT(ilogbf)(float x) { return fputil::ilogb(x); } in LLVM_LIBC_ENTRYPOINT() argument
|
D | CMakeLists.txt | 358 ilogbf 360 ilogbf.cpp 362 ilogbf.h
|
/external/rust/crates/libm/src/math/ |
D | mod.rs | 126 mod ilogbf; module 234 pub use self::ilogbf::ilogbf;
|
D | ilogbf.rs | 4 pub fn ilogbf(x: f32) -> i32 { in ilogbf() function
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 104 int ilogbf(float); 282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
|
/external/llvm-project/clang/test/CodeGen/ |
D | libcall-declarations.c | 104 int ilogbf(float); 282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
|
D | math-libcalls.c | 291 ilogb(f); ilogbf(f); ilogbl(f); in foo()
|
/external/llvm-project/libc/config/linux/aarch64/ |
D | entrypoints.txt | 74 libc.src.math.ilogbf
|
/external/llvm-project/clang/lib/Headers/openmp_wrappers/ |
D | cmath | 53 __DEVICE__ int ilogb(float __x) { return ::ilogbf(__x); }
|
/external/llvm-project/clang/test/Headers/Inputs/include/ |
D | math.h | 77 int ilogbf(float __a);
|
/external/llvm-project/libc/config/linux/x86_64/ |
D | entrypoints.txt | 117 libc.src.math.ilogbf
|
/external/libcxx/include/ |
D | cmath | 217 int ilogbf(float x); 425 using ::ilogbf;
|
/external/llvm-project/libcxx/include/ |
D | cmath | 216 int ilogbf(float x); 428 using ::ilogbf;
|
/external/llvm-project/clang/lib/Headers/ |
D | __clang_cuda_cmath.h | 469 using ::ilogbf;
|
D | __clang_hip_cmath.h | 587 using ::ilogbf;
|
D | __clang_cuda_math.h | 142 __DEVICE__ int ilogbf(float __a) { return __nv_ilogbf(__a); } in ilogbf() function
|
D | tgmath.h | 840 __tg_ilogb(float __x) {return ilogbf(__x);} in __tg_ilogb()
|
D | __clang_hip_math.h | 261 int ilogbf(float __x) { return __ocml_ilogb_f32(__x); }
|
/external/llvm-project/libc/spec/ |
D | stdc.td | 333 FunctionSpec<"ilogbf", RetValSpec<IntType>, [ArgSpec<FloatType>]>,
|
/external/clang/lib/Headers/ |
D | tgmath.h | 847 __tg_ilogb(float __x) {return ilogbf(__x);} in __tg_ilogb()
|
12