Home
last modified time | relevance | path

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

12

/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/lib/msun/src/
H A Ds_frexp.c31 frexp(double x, int *eptr) in frexp() function
51 __weak_reference(frexp, frexpl);
H A Dmath.h249 double frexp(double, int *); /* fundamentally !__pure2 */
/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
574 frexp(__T __x, int *__exp) {
575 return ::frexp((double)__x, __exp);
676 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
H A Dopencl-c.h7358 float __ovld frexp(float, int *);
7359 float2 __ovld frexp(float2, int2 *);
7360 float3 __ovld frexp(float3, int3 *);
7361 float4 __ovld frexp(float4, int4 *);
7362 float8 __ovld frexp(float8, int8 *);
7363 float16 __ovld frexp(float16, int16 *);
7365 double __ovld frexp(double, int *);
7366 double2 __ovld frexp(double2, int2 *);
7367 double3 __ovld frexp(double3, int3 *);
7368 double4 __ovld frexp(double4, int4 *);
[all …]
/freebsd/lib/libc/gen/
H A Dfrexp.c34 frexp(double d, int *ex) in frexp() function
H A DMakefile.inc59 frexp.c \
227 frexp.3 \
372 MLINKS+=frexp.3 frexpf.3 \
373 frexp.3 frexpl.3
H A DSymbol.map118 frexp;
/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/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h541 friend IEEEFloat frexp(const IEEEFloat &X, int &Exp, roundingMode);
705 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM);
799 friend DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, roundingMode);
805 DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, IEEEFloat::roundingMode);
1410 friend APFloat frexp(const APFloat &X, int &Exp, roundingMode RM);
1432 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { in frexp() function
1434 return APFloat(frexp(X.U.IEEE, Exp, RM), X.getSemantics()); in frexp()
1436 return APFloat(frexp(X.U.Double, Exp, RM), X.getSemantics()); in frexp()
/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_dll_thunk.cpp69 INTERCEPT_LIBRARY_FUNCTION(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/
H A Dmath.h468 using std::__math::frexp;
H A Dcmath93 floating_point frexp (arithmetic value, int* exp);
392 using ::frexp _LIBCPP_USING_IF_EXISTS;
/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/libcxx/modules/std.compat/
H A Dcmath.inc78 using ::frexp _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcmath.cppm
/freebsd/contrib/lua/src/
H A Dlmathlib.c683 lua_pushnumber(L, l_mathop(frexp)(luaL_checknumber(L, 1), &e)); in math_frexp()

12