Home
last modified time | relevance | path

Searched defs:frexp (Results 1 – 15 of 15) sorted by relevance

/llvm-project/libcxx/include/__math/
H A Dexponential_functions.h45 inline _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(_… in frexp() function
48 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() function
52 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT { in frexp() function
57 inline _LIBCPP_HIDE_FROM_ABI double frexp(_A1 __x, int* __e) _NOEXCEPT { in frexp() function
/llvm-project/libc/src/__support/FPUtil/
H A DManipulationFunctions.h30 LIBC_INLINE T frexp(T x, int &exp) { frexp() function
/llvm-project/clang/lib/Headers/
H A D__clang_hip_cmath.h64 __DEVICE__ __CONSTEXPR__ float frexp(float __arg, int *__exp) { in frexp() function
H A D__clang_cuda_cmath.h64 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() function
H A D__clang_cuda_math.h137 __DEVICE__ double frexp(double __a, int *__b) { return __nv_frexp(__a, __b); } frexp() function
H A Dtgmath.h816 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro
/llvm-project/libc/src/math/nvptx/
H A Dnvptx.h88 LIBC_INLINE double frexp(double x, int *i) { return __nv_frexp(x, i); } frexp() function
/llvm-project/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp50 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } frexp() function
[all...]
/llvm-project/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp50 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } in frexp() function
/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h1426 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { frexp() function
/llvm-project/libc/utils/MPFRWrapper/
H A DMPFRUtils.cpp359 MPFRNumber frexp(int &exp) { frexp() function in LIBC_NAMESPACE::testing::mpfr::MPFRNumber
/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4644 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM) { frexp() function
5237 DoubleAPFloat frexp(const DoubleAPFloat &Arg, int &Exp, frexp() function
/llvm-project/mlir/lib/Dialect/Math/Transforms/
H A DPolynomialApproximation.cpp227 static std::pair<Value, Value> frexp(ImplicitLocOpBuilder &builder, Value arg, frexp() function
/llvm-project/llvm/unittests/ADT/
H A DAPFloatTest.cpp3930 TEST(APFloatTest,frexp) TEST() argument
[all...]
/llvm-project/compiler-rt/lib/msan/tests/
H A Dmsan_test.cpp2488 TEST(MemorySanitizer, frexp) { in TEST() argument