Home
last modified time | relevance | path

Searched refs:frexp (Results 1 – 25 of 64) sorted by relevance

123

/freebsd/lib/msun/src/
H A Ds_frexp.c31 frexp(double x, int *eptr) in frexp() function
51 __weak_reference(frexp, frexpl);
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__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
/freebsd/contrib/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
/freebsd/contrib/netbsd-tests/lib/libc/gen/
H A Dt_fpclassify.c109 f = frexp(d0, &e); in ATF_TC_BODY()
127 f = frexp(d1, &e); in ATF_TC_BODY()
134 f = frexp(d1, &e); in ATF_TC_BODY()
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h81 __DEVICE__ double frexp(double, int *);
82 __DEVICE__ float frexp(float, int *);
226 using ::frexp;
H A D__clang_cuda_cmath.h64 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() function
320 frexp(__T __x, int *__exp) {
321 return std::frexp((double)__x, __exp);
393 using ::frexp;
H A D__clang_hip_cmath.h64 __DEVICE__ __CONSTEXPR__ float frexp(float __arg, int *__exp) { in frexp() function
580 frexp(__T __x, int *__exp) {
581 return ::frexp((double)__x, __exp);
682 using ::frexp;
H A Dtgmath.h809 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);} in __tg_frexp()
815 #undef frexp
816 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro
/freebsd/contrib/llvm-project/libc/src/__support/math/
H A Dfrexpf.h21 return fputil::frexp(x, *exp); in frexpf()
H A Dfrexpf16.h25 return fputil::frexp(x, *exp); in frexpf16()
H A Dfrexpf128.h25 return fputil::frexp(x, *exp); in frexpf128()
/freebsd/lib/libc/gen/
H A Dfrexp.c34 frexp(double d, int *ex) in frexp() function
H A DMakefile.inc60 frexp.c \
237 frexp.3 \
386 MLINKS+=frexp.3 frexpf.3 \
387 frexp.3 frexpl.3
/freebsd/contrib/llvm-project/libcxx/include/__compare/
H A Dstrong_order.h83 (void)__math::frexp(__t, &__texp); in __go()
84 (void)__math::frexp(__u, &__uexp); in __go()
/freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/
H A Dcbrt_2u.c40 double m = frexp (asdouble (iax), &e); in cbrt()
/freebsd/lib/msun/bsdsrc/
H A Db_log.c368 g = frexp(x, &m); in __log__D()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win_static_runtime_thunk.cpp38 INTERCEPT_LIBRARY_FUNCTION_ASAN(frexp);
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h637 LLVM_ABI friend IEEEFloat frexp(const IEEEFloat &X, int &Exp, roundingMode);
811 LLVM_ABI IEEEFloat frexp(const IEEEFloat &Val, int &Exp, roundingMode RM);
912 LLVM_ABI friend DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp,
920 LLVM_ABI DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, roundingMode);
1525 friend APFloat frexp(const APFloat &X, int &Exp, roundingMode RM);
1550 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { in frexp() function
1552 return APFloat(frexp(X.U.IEEE, Exp, RM), X.getSemantics()); in frexp()
1554 return APFloat(frexp(X.U.Double, Exp, RM), X.getSemantics()); in frexp()
/freebsd/include/
H A Dtgmath.h177 #define frexp(x, y) __tg_simplev(x, frexp, x, y) macro
/freebsd/lib/msun/
H A DSymbol.map110 frexp;
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dmath.h468 using std::__math::frexp;
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmath.h462 using std::__math::frexp;
/freebsd/tools/regression/include/tgmath/
H A Dtgmath.c120 double (frexp)(double x, int *e) { n_double++; }
519 PASS_REAL_FIXED_ARG_REAL_RET(frexp, &i)); in main()
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A DManipulationFunctions.h32 LIBC_INLINE constexpr T frexp(T x, int &exp) { in frexp() function
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc78 using ::frexp _LIBCPP_USING_IF_EXISTS;

123