1 /* s_nextafterl.c -- long double version of s_nextafter.c.
2 * Special version for i387.
3 * Conversion to long double by Ulrich Drepper,
4 * Cygnus Support, drepper@cygnus.com.
8 * ====================================================
9 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
11 * Developed at SunPro, a Sun Microsystems, Inc. business.
12 * Permission to use, copy, modify, and distribute this
13 * software is freely granted, provided that this notice
15 * ====================================================
18 #if defined(LIBM_SCCS) && !defined(lint)
19 static char rcsid
[] = "$NetBSD: $";
24 * return the next machine floating-point number of x in the
30 #include "math_private.h"
33 long double __nextafterl(long double x
, long double y
)
35 long double __nextafterl(x
,y
)
40 u_int32_t lx
,ly
,esx
,esy
;
42 GET_LDOUBLE_WORDS(esx
,hx
,lx
,x
);
43 GET_LDOUBLE_WORDS(esy
,hy
,ly
,y
);
44 ix
= esx
&0x7fff; /* |x| */
45 iy
= esy
&0x7fff; /* |y| */
47 /* The additional &hx/&hy is required because Intel's extended format
48 has the normally implicit 1 explicit present. Sigh! */
49 if(((ix
==0x7fff)&&(((hx
|lx
)|-(hx
|lx
))&hx
)>>31!=0) || /* x is nan */
50 ((iy
==0x7fff)&&(((hy
|ly
)|-(hy
|ly
))&hy
)>>31!=0)) /* y is nan */
52 if(x
==y
) return y
; /* x=y, return y */
53 if((ix
|hx
|lx
)==0) { /* x == 0 */
54 SET_LDOUBLE_WORDS(x
,esx
&0x8000,0,1);/* return +-minsubnormal */
56 if(y
==x
) return y
; else return x
; /* raise underflow flag */
58 if(esx
<0x8000) { /* x > 0 */
59 if(ix
>iy
||((ix
==iy
) && (hx
>hy
||((hx
==hy
)&&(lx
>ly
))))) {
66 } else { /* x < y, x += ulp */
75 if(esy
>=0||(ix
>iy
||((ix
==iy
)&&(hx
>hy
||((hx
==hy
)&&(lx
>ly
)))))){
82 } else { /* x > y, x += ulp */
91 if(esy
==0x7fff) return x
+x
; /* overflow */
92 if(esy
==0) { /* underflow */
94 if(y
!=x
) { /* raise underflow flag */
95 SET_LDOUBLE_WORDS(y
,esx
,hx
,lx
);
99 SET_LDOUBLE_WORDS(x
,esx
,hx
,lx
);
102 weak_alias (__nextafterl
, nextafterl
)