2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
9 * ====================================================
14 * return the next machine floating-point number of x in the
20 #include "math_private.h"
22 double nextafter(double x
, double y
)
27 EXTRACT_WORDS(hx
,lx
,x
);
28 EXTRACT_WORDS(hy
,ly
,y
);
29 ix
= hx
&0x7fffffff; /* |x| */
30 iy
= hy
&0x7fffffff; /* |y| */
32 if(((ix
>=0x7ff00000)&&((ix
-0x7ff00000)|lx
)!=0) || /* x is nan */
33 ((iy
>=0x7ff00000)&&((iy
-0x7ff00000)|ly
)!=0)) /* y is nan */
35 if(x
==y
) return y
; /* x=y, return y */
36 if((ix
|lx
)==0) { /* x == 0 */
37 INSERT_WORDS(x
,hy
&0x80000000,1); /* return +-minsubnormal */
39 if(y
==x
) return y
; else return x
; /* raise underflow flag */
41 if(hx
>=0) { /* x > 0 */
42 if(hx
>hy
||((hx
==hy
)&&(lx
>ly
))) { /* x > y, x -= ulp */
45 } else { /* x < y, x += ulp */
50 if(hy
>=0||hx
>hy
||((hx
==hy
)&&(lx
>ly
))){/* x < y, x -= ulp */
53 } else { /* x > y, x += ulp */
59 if(hy
>=0x7ff00000) return x
+x
; /* overflow */
60 if(hy
<0x00100000) { /* underflow */
62 if(y
!=x
) { /* raise underflow flag */
63 INSERT_WORDS(y
,hx
,lx
);
67 INSERT_WORDS(x
,hx
,lx
);
70 libm_hidden_def(nextafter
)
71 strong_alias_untyped(nextafter
, nexttoward
)
72 libm_hidden_def(nexttoward
)