Searched refs:iptr (Results 1 - 3 of 3) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_modf.c18 * modf(double x, double *iptr)
19 * return fraction part of x, and return x's integral part in *iptr.
33 modf(double x, double *iptr) argument
41 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
47 *iptr = x;
52 INSERT_WORDS(*iptr,i0&(~i),0);
53 return x - *iptr;
59 *iptr = x;
62 *iptr
[all...]
H A Ds_modff.c25 modff(float x, float *iptr) argument
33 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */
39 *iptr = x;
44 SET_FLOAT_WORD(*iptr,i0&(~i));
45 return x - *iptr;
50 *iptr = x*one;
H A Ds_modfl.c58 modfl(long double x, long double *iptr) argument
67 *iptr = zero[ux.bits.sign];
72 *iptr = x;
79 *iptr = ux.e;
84 *iptr = x;
91 *iptr = x;
97 *iptr = ux.e;

Completed in 139 milliseconds