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

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Math/
H A Ds_modf.c19 * modf(double x, double *iptr)
20 * return fraction part of x, and return x's integral part in *iptr.
34 modf(double x, double *iptr) argument
42 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */
48 *iptr = x;
53 INSERT_WORDS(*iptr,i0&(~i),0);
54 return x - *iptr;
59 *iptr = x*one;
67 *iptr
[all...]

Completed in 200 milliseconds