1 /* @(#)s_nextafter.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 * ====================================================
15 * return the next machine floating-point number of x in the
23 #include "math_private.h"
26 nextafter(double x
, double y
)
31 EXTRACT_WORDS(hx
,lx
,x
);
32 EXTRACT_WORDS(hy
,ly
,y
);
33 ix
= hx
&0x7fffffff; /* |x| */
34 iy
= hy
&0x7fffffff; /* |y| */
36 if(((ix
>=0x7ff00000)&&((ix
-0x7ff00000)|lx
)!=0) || /* x is nan */
37 ((iy
>=0x7ff00000)&&((iy
-0x7ff00000)|ly
)!=0)) /* y is nan */
39 if(x
==y
) return y
; /* x=y, return y */
40 if((ix
|lx
)==0) { /* x == 0 */
41 INSERT_WORDS(x
,hy
&0x80000000,1); /* return +-minsubnormal */
43 if(y
==x
) return y
; else return x
; /* raise underflow flag */
45 if(hx
>=0) { /* x > 0 */
46 if(hx
>hy
||((hx
==hy
)&&(lx
>ly
))) { /* x > y, x -= ulp */
49 } else { /* x < y, x += ulp */
54 if(hy
>=0||hx
>hy
||((hx
==hy
)&&(lx
>ly
))){/* x < y, x -= ulp */
57 } else { /* x > y, x += ulp */
63 if(hy
>=0x7ff00000) return x
+x
; /* overflow */
64 if(hy
<0x00100000) { /* underflow */
66 if(y
!=x
) { /* raise underflow flag */
67 INSERT_WORDS(y
,hx
,lx
);
71 INSERT_WORDS(x
,hx
,lx
);
75 #if LDBL_MANT_DIG == 53
76 __strong_alias(nextafterl
, nextafter
);
77 __strong_alias(nexttoward
, nextafter
);
78 __strong_alias(nexttowardl
, nextafter
);
79 #endif /* LDBL_MANT_DIG == 53 */