1 /* @(#)s_rint.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_rint.c,v 1.13 2005/12/03 07:38:35 bde Exp $";
19 * Return x rounded to integral value according to the prevailing
22 * Using floating addition.
24 * Inexact flag raised if x not equal to rint(x).
28 #include "math_private.h"
32 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
33 -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
42 EXTRACT_WORDS(i0
,i1
,x
);
44 j0
= ((i0
>>20)&0x7ff)-0x3ff;
47 if(((i0
&0x7fffffff)|i1
)==0) return x
;
50 i0
|= ((i1
|-i1
)>>12)&0x80000;
55 SET_HIGH_WORD(t
,(i0
&0x7fffffff)|(sx
<<31));
59 if(((i0
&i
)|i1
)==0) return x
; /* x is integral */
63 * Some bit is set after the 0.5 bit. To avoid the
64 * possibility of errors from double rounding in
65 * w = TWO52[sx]+x, adjust the 0.25 bit to a lower
66 * guard bit. We do this for all j0<=51. The
67 * adjustment is trickiest for j0==18 and j0==19
68 * since then it spans the word boundary.
70 if(j0
==19) i1
= 0x40000000; else
71 if(j0
==18) i1
= 0x80000000; else
72 i0
= (i0
&(~i
))|((0x20000)>>j0
);
76 if(j0
==0x400) return x
+x
; /* inf or NaN */
77 else return x
; /* x is integral */
79 i
= ((uint32_t)(0xffffffff))>>(j0
-20);
80 if((i1
&i
)==0) return x
; /* x is integral */
82 if((i1
&i
)!=0) i1
= (i1
&(~i
))|((0x40000000)>>(j0
-20));
84 INSERT_WORDS(x
,i0
,i1
);
85 *(volatile double *)&w
= TWO52
[sx
]+x
; /* clip any extra precision */