1 /* origin: FreeBSD /usr/src/lib/msun/src/s_rint.c */
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 * Return x rounded to integral value according to the prevailing
17 * Using floating addition.
19 * Inexact flag raised if x not equal to rint(x).
26 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
27 -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
36 EXTRACT_WORDS(i0, i1, x);
37 // FIXME: signed shift
39 j0 = ((i0>>20)&0x7ff) - 0x3ff;
42 if (((i0&0x7fffffff)|i1) == 0)
46 i0 |= ((i1|-i1)>>12) & 0x80000;
48 STRICT_ASSIGN(double, w, TWO52[sx] + x);
51 SET_HIGH_WORD(t, (i0&0x7fffffff)|(sx<<31));
56 return x; /* x is integral */
58 if (((i0&i)|i1) != 0) {
60 * Some bit is set after the 0.5 bit. To avoid the
61 * possibility of errors from double rounding in
62 * w = TWO52[sx]+x, adjust the 0.25 bit to a lower
63 * guard bit. We do this for all j0<=51. The
64 * adjustment is trickiest for j0==18 and j0==19
65 * since then it spans the word boundary.
72 i0 = (i0 & ~i)|(0x20000>>j0);
77 return x+x; /* inf or NaN */
78 return x; /* x is integral */
80 i = (uint32_t)0xffffffff>>(j0-20);
82 return x; /* x is integral */
85 i1 = (i1 & ~i)|(0x40000000>>(j0-20));
87 INSERT_WORDS(x, i0, i1);
88 STRICT_ASSIGN(double, w, TWO52[sx] + x);