1 /* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
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 * ====================================================
13 #if defined(LIBM_SCCS) && !defined(lint)
14 static char rcsid
[] = "$NetBSD: s_rint.c,v 1.8 1995/05/10 20:48:04 jtc 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).
29 #include <math_private.h>
33 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
34 -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
38 __nearbyint (double x
)
43 GET_HIGH_WORD (i0
, x
);
45 j0
= ((i0
>> 20) & 0x7ff) - 0x3ff;
50 libc_feholdexcept (&env
);
55 GET_HIGH_WORD (i0
, t
);
56 SET_HIGH_WORD (t
, (i0
& 0x7fffffff) | (sx
<< 31));
63 return x
+ x
; /* inf or NaN */
65 return x
; /* x is integral */
67 libc_feholdexcept (&env
);
74 weak_alias (__nearbyint
, nearbyint
)
76 strong_alias (__nearbyint
, __nearbyintl
)
77 weak_alias (__nearbyint
, nearbyintl
)