1 /* $NetBSD: s_nexttoward.c,v 1.1 2010/09/15 16:12:05 christos 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.1 2010/09/15 16:12:05 christos 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"
34 * The nexttoward() function is equivalent to nextafter() function,
35 * except that the second parameter shall have type long double and
36 * the functions shall return y converted to the type of the function
42 nexttoward(double x
, long double y
)
49 EXTRACT_WORDS(hx
, lx
, x
);
50 ix
= hx
& 0x7fffffff; /* |x| */
53 if (((ix
>= 0x7ff00000) && ((ix
- 0x7ff00000) | lx
) != 0) ||
54 (uy
.extu_exp
== 0x7fff &&
55 ((uy
.extu_frach
& ~LDBL_NBIT
) | uy
.extu_fracl
) != 0))
56 return x
+y
; /* x or y is nan */
59 return (double)y
; /* x=y, return y */
62 INSERT_WORDS(x
, uy
.extu_sign
<<31, 1); /* return +-minsubnormal */
67 return x
; /* raise underflow flag */
70 if ((hx
> 0.0) ^ (x
< y
)) { /* x -= ulp */
73 } else { /* x += ulp */
78 if (ix
>= 0x7ff00000) return x
+x
; /* overflow */
79 if (ix
< 0x00100000) { /* underflow */
81 if (t
!= x
) { /* raise underflow flag */
82 INSERT_WORDS(y
, hx
, lx
);
86 INSERT_WORDS(x
, hx
, lx
);