Searched defs:frexp (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__math/ |
H A D | exponential_functions.h | 45 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
|
/freebsd/lib/libc/gen/ |
H A D | frexp.c | 34 frexp(double d, int *ex) in frexp() function
|
/freebsd/lib/msun/src/ |
H A D | s_frexp.c | 31 frexp(double x, int *eptr) in frexp() function
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_hip_cmath.h | 64 __DEVICE__ __CONSTEXPR__ float frexp(float __arg, int *__exp) { in frexp() function
|
H A D | __clang_cuda_cmath.h | 64 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() function
|
H A D | tgmath.h | 816 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro
|
/freebsd/include/ |
H A D | tgmath.h | 177 #define frexp(x, y) __tg_simplev(x, frexp, x, y) macro
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APFloat.h | 1432 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { in frexp() function
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APFloat.cpp | 4664 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM) { in frexp() function 5257 DoubleAPFloat frexp(const DoubleAPFloat &Arg, int &Exp, in frexp() function
|