Home | History | Annotate | Download | only in fdlibm

Lines Matching refs:iptr

15  * ieee_modf(double x, double *iptr) 
16 * return fraction part of x, and return x's integral part in *iptr.
33 double ieee_modf(double x, double *iptr)
35 double ieee_modf(x, iptr)
36 double x,*iptr;
46 __HIp(iptr) = i0&0x80000000;
47 __LOp(iptr) = 0; /* *iptr = +-0 */
52 *iptr = x;
57 __HIp(iptr) = i0&(~i);
58 __LOp(iptr) = 0;
59 return x - *iptr;
63 *iptr = x*one;
70 *iptr = x;
75 __HIp(iptr) = i0;
76 __LOp(iptr) = i1&(~i);
77 return x - *iptr;