1 /* @(#)s_modf.c 5.1 93/09/24 */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
14 static char rcsid
[] = "$FreeBSD: src/lib/msun/src/s_modf.c,v 1.8 2007/01/06 21:22:38 das Exp $";
18 * modf(double x, double *iptr)
19 * return fraction part of x, and return x's integral part in *iptr.
28 #include "math_private.h"
30 static const double one
= 1.0;
33 modf(double x
, double *iptr
)
37 EXTRACT_WORDS(i0
,i1
,x
);
38 j0
= ((i0
>>20)&0x7ff)-0x3ff; /* exponent of x */
39 if(j0
<20) { /* integer part in high x */
40 if(j0
<0) { /* |x|<1 */
41 INSERT_WORDS(*iptr
,i0
&0x80000000,0); /* *iptr = +-0 */
45 if(((i0
&i
)|i1
)==0) { /* x is integral */
48 GET_HIGH_WORD(high
,x
);
49 INSERT_WORDS(x
,high
&0x80000000,0); /* return +-0 */
52 INSERT_WORDS(*iptr
,i0
&(~i
),0);
56 } else if (j0
>51) { /* no fraction part */
58 if (j0
== 0x400) { /* inf/NaN */
63 GET_HIGH_WORD(high
,x
);
64 INSERT_WORDS(x
,high
&0x80000000,0); /* return +-0 */
66 } else { /* fraction part in low x */
67 i
= ((uint32_t)(0xffffffff))>>(j0
-20);
68 if((i1
&i
)==0) { /* x is integral */
71 GET_HIGH_WORD(high
,x
);
72 INSERT_WORDS(x
,high
&0x80000000,0); /* return +-0 */
75 INSERT_WORDS(*iptr
,i0
,i1
&(~i
));