Searched refs:frexp (Results 1 - 25 of 36) sorted by path

12

/freebsd-11-stable/contrib/binutils/binutils/
H A Dconfigure12445 # Some systems have frexp only in -lm, not in -lc.
12446 echo "$as_me:$LINENO: checking for library containing frexp" >&5
12447 echo $ECHO_N "checking for library containing frexp... $ECHO_C" >&6
12466 char frexp ();
12470 frexp (); function
12521 char frexp ();
12525 frexp (); function
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dfloatformat.c512 mant = frexp (dfrom, &exponent);
/freebsd-11-stable/contrib/gcc/
H A Dfp-test.c55 extern double frexp (double, int *);
239 d1 = frexp (d2, &i1);
H A Dsys-protos.h404 extern double frexp(double, int *);
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dfloatformat.c512 mant = frexp (dfrom, &exponent);
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddoublest.c286 frexp, but operates on the long double data type. */
382 mant = frexp (dfrom, &exponent);
/freebsd-11-stable/contrib/groff/src/preproc/grn/
H A Dhgraph.cpp599 (void) frexp(resolution, &m); /* A bit more elegant than log10 */
/freebsd-11-stable/contrib/libstdc++/include/c/
H A Dstd_cmath.h57 #undef frexp macro
/freebsd-11-stable/contrib/libstdc++/include/c_compatibility/
H A Dmath.h47 using std::frexp;
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cmath.h70 #undef frexp macro
271 using ::frexp;
274 frexp(float __x, int* __exp) function
278 frexp(long double __x, int* __exp) function
284 frexp(_Tp __x, int* __exp) function
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dfunctional_hash.h39 #include <cmath> // for std::frexp
196 // 10 bytes -> 12 bytes) and resort to frexp.
207 __ldval = std::frexp(__ldval, &__exponent);
H A Dmath.h65 using std::tr1::frexp;
/freebsd-11-stable/contrib/libstdc++/libmath/
H A Dstubs.c228 return (float) frexp(x, exp);
236 return frexp((double) x, exp);
/freebsd-11-stable/contrib/libstdc++/src/
H A Dcompatibility.cc447 _GLIBCXX_MATHL_WRAPPER (frexp, (double x, int *y), (x, y), GLIBCXX_3.4.3);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_fpclassify.c109 f = frexp(d0, &e);
127 f = frexp(d1, &e);
134 f = frexp(d1, &e);
140 * XXX NetBSD doesn't have long-double flavors of frexp, ldexp, and modf,
/freebsd-11-stable/include/
H A Dtgmath.h177 #define frexp(x, y) __tg_simplev(x, frexp, x, y) macro
/freebsd-11-stable/lib/libc/gen/
H A Dfrexp.c34 frexp(double d, int *ex) function
/freebsd-11-stable/lib/msun/src/
H A Ds_fma.c200 xs = frexp(x, &ex);
201 ys = frexp(y, &ey);
202 zs = frexp(z, &ez);
H A Ds_frexp.c18 * x = frexp(arg,&exp);
22 * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
35 frexp(double x, int *eptr) function
55 __weak_reference(frexp, frexpl);
/freebsd-11-stable/tools/regression/include/tgmath/
H A Dtgmath.c122 double (frexp)(double x, int *e) { n_double++; } function
520 PRINT("frexp",
521 PASS_REAL_FIXED_ARG_REAL_RET(frexp, &i));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h81 __DEVICE__ float frexp(float __arg, int *__exp) { function
291 frexp(__T __x, int *__exp) { function
292 return std::frexp((double)__x, __exp);
364 using ::frexp;
H A D__clang_cuda_device_functions.h1571 __DEVICE__ double frexp(double __a, int *__b) { return __nv_frexp(__a, __b); } function
H A D__clang_cuda_math_forward_declares.h104 __DEVICE__ double frexp(double, int *);
105 __DEVICE__ float frexp(float, int *);
249 using ::frexp;
H A Dopencl-c.h7446 float __ovld frexp(float x, int *exp);
7447 float2 __ovld frexp(float2 x, int2 *exp);
7448 float3 __ovld frexp(float3 x, int3 *exp);
7449 float4 __ovld frexp(float4 x, int4 *exp);
7450 float8 __ovld frexp(float8 x, int8 *exp);
7451 float16 __ovld frexp(float16 x, int16 *exp);
7453 double __ovld frexp(double x, int *exp);
7454 double2 __ovld frexp(double2 x, int2 *exp);
7455 double3 __ovld frexp(double3 x, int3 *exp);
7456 double4 __ovld frexp(double
[all...]
H A Dtgmath.h801 // frexp
809 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);}
815 #undef frexp macro
816 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro

Completed in 299 milliseconds

12