HomeSort by: relevance | last modified time | path
    Searched refs:frexp (Results 1 - 17 of 17) sorted by relevancy

  /src/lib/libc/gen/
Lint_frexp.c 12 frexp(double value, int *eptr) function in typeref:typename:double
  /src/lib/libm/noieee_src/
n_frexpf.c 42 * representable by double. The normalized result of frexp
49 * of double frexp(double, int *).
51 return frexp(x, e);
n_frexpl.c 45 * This can't be a symbol alias because frexp is defined in
49 return frexp(x, e);
n_fmod.c 97 (void)frexp(y,&iy);
99 (void)frexp(r,&ir);
  /src/lib/libm/src/
s_frexp.c 20 * x = frexp(arg,&exp);
24 * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
32 __strong_alias(frexpl, frexp)
39 frexp(double x, int *eptr) function in typeref:typename:double
s_fma.c 213 xs = frexp(x, &ex);
214 ys = frexp(y, &ey);
215 zs = frexp(z, &ez);
  /src/lib/libc/arch/vax/gen/
frexp.c 1 /* $NetBSD: frexp.c,v 1.5 2012/06/25 22:32:43 abs Exp $ */
35 static char sccsid[] = "@(#)frexp.c 8.1 (Berkeley) 6/4/93";
37 __RCSID("$NetBSD: frexp.c,v 1.5 2012/06/25 22:32:43 abs Exp $");
45 frexp(double value, int *eptr) function in typeref:typename:double
Makefile.inc 4 fabs.S fabsf.S frexp.c \
  /src/lib/libc/compat/gen/
compat_frexp_ieee754.c 35 * from: Header: frexp.c,v 1.1 91/07/07 04:45:01 torek Exp
41 static char sccsid[] = "@(#)frexp.c 8.1 (Berkeley) 6/4/93";
57 frexp(double value, int *eptr) function in typeref:typename:double
  /src/tests/lib/libc/gen/
t_fpclassify.c 132 f = frexp(d0, &e);
134 "frexp(%a) returned normalized %a, exponent %d;"
138 "frexp(%a) returned normalized %a, exponent %d;"
169 f = frexp(d1, &e);
171 "[%d] frexp(%a) returned normalized %a, exponent %d;"
175 "[%d] frexp(%a) returned normalized %a, exponent %d;"
185 f = frexp(d1, &e);
187 "frexp(%a) returned normalized %a, exponent %d;"
191 "frexp(%a) returned normalized %a, exponent %d;"
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_win_dll_thunk.cc 62 INTERCEPT_LIBRARY_FUNCTION(frexp);
  /src/include/
tgmath.h 163 #define frexp(a,b) __TG_FN1x(frexp, (a), (b)) macro
math.h 252 double frexp(double, int *);
  /src/usr.bin/xlint/llib/
llib-lstdc 107 double (frexp)(double value, int *exp);
  /src/lib/libm/
Makefile 449 fabs.3 finite.3 fma.3 fmod.3 frexp.3 hypot.3 \
571 MLINKS+=frexp.3 frexpf.3 \
572 frexp.3 frexpl.3
  /src/bin/ksh/
shf.c 881 * extern double frexp();
1088 (void) frexp(fpnum, &expo);
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 2466 TEST(MemorySanitizer, frexp) {
2469 double r = frexp(1.1, &x);

Completed in 46 milliseconds