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"
37 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
38 -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
42 double __nearbyint(double x
)
52 EXTRACT_WORDS(i0
,i1
,x
);
54 j0
= ((i0
>>20)&0x7ff)-0x3ff;
57 if(((i0
&0x7fffffff)|i1
)==0) return x
;
60 i0
|= ((i1
|-i1
)>>12)&0x80000;
67 SET_HIGH_WORD(t
,(i0
&0x7fffffff)|(sx
<<31));
71 if(((i0
&i
)|i1
)==0) return x
; /* x is integral */
74 if(j0
==19) i1
= 0x40000000; else
75 i0
= (i0
&(~i
))|((0x20000)>>j0
);
79 if(j0
==0x400) return x
+x
; /* inf or NaN */
80 else return x
; /* x is integral */
82 i
= ((u_int32_t
)(0xffffffff))>>(j0
-20);
83 if((i1
&i
)==0) return x
; /* x is integral */
85 if((i1
&i
)!=0) i1
= (i1
&(~i
))|((0x40000000)>>(j0
-20));
87 INSERT_WORDS(x
,i0
,i1
);
94 weak_alias (__nearbyint
, nearbyint
)
96 strong_alias (__nearbyint
, __nearbyintl
)
97 weak_alias (__nearbyint
, nearbyintl
)