1 /* $NetBSD: s_nexttoward.c,v 1.2 2013/08/21 13:03:56 martin Exp $ */
3 /* @(#)s_nextafter.c 5.1 93/09/24 */
5 * ====================================================
6 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 * Developed at SunPro, a Sun Microsystems, Inc. business.
9 * Permission to use, copy, modify, and distribute this
10 * software is freely granted, provided that this notice
12 * ====================================================
15 #include <sys/cdefs.h>
16 __RCSID("$NetBSD: s_nexttoward.c,v 1.2 2013/08/21 13:03:56 martin Exp $");
19 * We assume that a long double has a 15-bit exponent. On systems
20 * where long double is the same as double, nexttoward() is an alias
21 * for nextafter(), so we don't use this routine.
25 #include <machine/ieee.h>
27 #include "math_private.h"
29 #if LDBL_MAX_EXP != 0x4000
30 #error "Unsupported long double format"
33 #ifdef LDBL_IMPLICIT_NBIT
38 * The nexttoward() function is equivalent to nextafter() function,
39 * except that the second parameter shall have type long double and
40 * the functions shall return y converted to the type of the function
46 nexttoward(double x
, long double y
)
53 EXTRACT_WORDS(hx
, lx
, x
);
54 ix
= hx
& 0x7fffffff; /* |x| */
57 if (((ix
>= 0x7ff00000) && ((ix
- 0x7ff00000) | lx
) != 0) ||
58 (uy
.extu_exp
== 0x7fff &&
59 ((uy
.extu_frach
& ~LDBL_NBIT
) | uy
.extu_fracl
) != 0))
60 return x
+y
; /* x or y is nan */
63 return (double)y
; /* x=y, return y */
66 INSERT_WORDS(x
, uy
.extu_sign
<<31, 1); /* return +-minsubnormal */
71 return x
; /* raise underflow flag */
74 if ((hx
> 0.0) ^ (x
< y
)) { /* x -= ulp */
77 } else { /* x += ulp */
82 if (ix
>= 0x7ff00000) return x
+x
; /* overflow */
83 if (ix
< 0x00100000) { /* underflow */
85 if (t
!= x
) { /* raise underflow flag */
86 INSERT_WORDS(y
, hx
, lx
);
90 INSERT_WORDS(x
, hx
, lx
);