Lines Matching refs:iptr
33 double ieee_modf(double x, double *iptr) in ieee_modf() argument
35 double ieee_modf(x, iptr) in ieee_modf()
36 double x,*iptr; in ieee_modf()
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;