Searched refs:frexp (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-10-stable/lib/msun/src/
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);
H A Ds_fma.c200 xs = frexp(x, &ex);
201 ys = frexp(y, &ey);
202 zs = frexp(z, &ez);
H A Dmath.h255 double frexp(double, int *); /* fundamentally !__pure2 */
/freebsd-10-stable/lib/libc/gen/
H A Dfrexp.c34 frexp(double d, int *ex) function
H A DMakefile.inc48 frexp.c \
198 frexp.3 \
347 MLINKS+=frexp.3 frexpf.3 \
348 frexp.3 frexpl.3
H A DSymbol.map128 frexp;
/freebsd-10-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-10-stable/contrib/libstdc++/include/c_compatibility/
H A Dmath.h47 using std::frexp;
/freebsd-10-stable/contrib/libstdc++/libmath/
H A Dstubs.c228 return (float) frexp(x, exp);
236 return frexp((double) x, exp);
/freebsd-10-stable/contrib/libstdc++/include/c/
H A Dstd_cmath.h57 #undef frexp macro
/freebsd-10-stable/contrib/libstdc++/include/tr1/
H A Dmath.h65 using std::tr1::frexp;
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);
/freebsd-10-stable/contrib/gcc/
H A Dfp-test.c55 extern double frexp (double, int *);
239 d1 = frexp (d2, &i1);
/freebsd-10-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-10-stable/lib/msun/
H A DSymbol.map112 frexp;
/freebsd-10-stable/include/
H A Dtgmath.h177 #define frexp(x, y) __tg_simplev(x, frexp, x, y) macro
/freebsd-10-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-10-stable/usr.bin/xlint/llib/
H A Dllib-lstdc107 double (frexp)(double value, int *exp);
/freebsd-10-stable/contrib/libstdc++/src/
H A Dcompatibility.cc447 _GLIBCXX_MATHL_WRAPPER (frexp, (double x, int *y), (x, y), GLIBCXX_3.4.3);
/freebsd-10-stable/contrib/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h274 /// double frexp(double num, int *exp);
275 frexp, enumerator in enum:llvm::LibFunc::Func
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/
H A Dtgmath.h808 // frexp
816 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);}
822 #undef frexp macro
823 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro
/freebsd-10-stable/contrib/binutils/libiberty/
H A Dfloatformat.c512 mant = frexp (dfrom, &exponent);
/freebsd-10-stable/contrib/gcclibs/libiberty/
H A Dfloatformat.c512 mant = frexp (dfrom, &exponent);
/freebsd-10-stable/contrib/gdb/gdb/
H A Ddoublest.c286 frexp, but operates on the long double data type. */
382 mant = frexp (dfrom, &exponent);
/freebsd-10-stable/contrib/groff/src/preproc/grn/
H A Dhgraph.cpp599 (void) frexp(resolution, &m); /* A bit more elegant than log10 */

Completed in 192 milliseconds

12