1 /* @(#)e_cosh.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 * ====================================================
13 #if defined(LIBM_SCCS) && !defined(lint)
14 static char rcsid
[] = "$NetBSD: e_cosh.c,v 1.7 1995/05/10 20:44:58 jtc Exp $";
19 * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2
20 * 1. Replace x by |x| (cosh(x) = cosh(-x)).
23 * 0 <= x <= ln2/2 : cosh(x) := 1 + -------------------
27 * ln2/2 <= x <= 22 : cosh(x) := -------------------
29 * 22 <= x <= lnovft : cosh(x) := exp(x)/2
30 * lnovft <= x <= ln2ovft: cosh(x) := exp(x/2)/2 * exp(x/2)
31 * ln2ovft < x : cosh(x) := huge*huge (overflow)
34 * cosh(x) is |x| if x is +INF, -INF, or NaN.
35 * only cosh(0)=1 is exact for finite x.
39 #include "math_private.h"
42 static const long double one
= 1.0L, half
=0.5L, huge
= 1.0e300L
;
44 static long double one
= 1.0L, half
=0.5L, huge
= 1.0e300L
;
48 long double __ieee754_coshl(long double x
)
50 long double __ieee754_coshl(x
)
57 /* High word of |x|. */
58 GET_LDOUBLE_MSW64(ix
,x
);
59 ix
&= 0x7fffffffffffffffLL
;
62 if(ix
>=0x7ff0000000000000LL
) return x
*x
;
64 /* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
65 if(ix
<0x3fd62e42fefa39efLL
) {
66 t
= __expm1l(fabsl(x
));
68 if (ix
<0x3c80000000000000LL
) return w
; /* cosh(tiny) = 1 */
69 return one
+(t
*t
)/(w
+w
);
72 /* |x| in [0.5*ln2,22], return (exp(|x|)+1/exp(|x|)/2; */
73 if (ix
< 0x4036000000000000LL
) {
74 t
= __ieee754_expl(fabsl(x
));
78 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
79 if (ix
< 0x40862e42fefa39efLL
) return half
*__ieee754_expl(fabsl(x
));
81 /* |x| in [log(maxdouble), overflowthresold] */
82 if (ix
< 0x408633ce8fb9f87dLL
) {
83 w
= __ieee754_expl(half
*fabsl(x
));
88 /* |x| > overflowthresold, cosh(x) overflow */