/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/msun/src/ |
H A D | s_frexp.c | 31 frexp(double x, int *eptr) in frexp() function 51 __weak_reference(frexp, frexpl);
|
H A D | math.h | 249 double frexp(double, int *); /* fundamentally !__pure2 */
|
/freebsd/contrib/netbsd-tests/lib/libc/gen/ |
H A D | t_fpclassify.c | 109 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.h | 81 __DEVICE__ double frexp(double, int *); 82 __DEVICE__ float frexp(float, int *); 226 using ::frexp;
|
H A D | __clang_cuda_cmath.h | 64 __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.h | 64 __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 D | tgmath.h | 809 __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 D | opencl-c.h | 7358 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 D | frexp.c | 34 frexp(double d, int *ex) in frexp() function
|
H A D | Makefile.inc | 59 frexp.c \ 227 frexp.3 \ 372 MLINKS+=frexp.3 frexpf.3 \ 373 frexp.3 frexpl.3
|
H A D | Symbol.map | 118 frexp;
|
/freebsd/contrib/llvm-project/libcxx/include/__compare/ |
H A D | strong_order.h | 83 (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 D | APFloat.h | 541 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 D | cbrt_2u.c | 40 double m = frexp (asdouble (iax), &e); in cbrt()
|
/freebsd/lib/msun/bsdsrc/ |
H A D | b_log.c | 368 g = frexp(x, &m); in __log__D()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_win_dll_thunk.cpp | 69 INTERCEPT_LIBRARY_FUNCTION(frexp);
|
/freebsd/include/ |
H A D | tgmath.h | 177 #define frexp(x, y) __tg_simplev(x, frexp, x, y) macro
|
/freebsd/lib/msun/ |
H A D | Symbol.map | 110 frexp;
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | math.h | 468 using std::__math::frexp;
|
H A D | cmath | 93 floating_point frexp (arithmetic value, int* exp); 392 using ::frexp _LIBCPP_USING_IF_EXISTS;
|
/freebsd/tools/regression/include/tgmath/ |
H A D | tgmath.c | 120 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 D | cmath.inc | 78 using ::frexp _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cmath.cppm |
|
/freebsd/contrib/lua/src/ |
H A D | lmathlib.c | 683 lua_pushnumber(L, l_mathop(frexp)(luaL_checknumber(L, 1), &e)); in math_frexp()
|