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 * ====================================================
15 * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2
16 * 1. Replace x by |x| (cosh(x) = cosh(-x)).
19 * 0 <= x <= ln2/2 : cosh(x) := 1 + -------------------
23 * ln2/2 <= x <= 22 : cosh(x) := -------------------
25 * 22 <= x <= lnovft : cosh(x) := exp(x)/2
26 * lnovft <= x <= ln2ovft: cosh(x) := exp(x/2)/2 * exp(x/2)
27 * ln2ovft < x : cosh(x) := huge*huge (overflow)
30 * cosh(x) is |x| if x is +INF, -INF, or NaN.
31 * only cosh(0)=1 is exact for finite x.
37 #include "math_private.h"
39 static const double one
= 1.0, half
=0.5, huge
= 1.0e300
;
48 /* High word of |x|. */
53 if(ix
>=0x7ff00000) return x
*x
;
55 /* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
59 if (ix
<0x3c800000) return w
; /* cosh(tiny) = 1 */
60 return one
+(t
*t
)/(w
+w
);
63 /* |x| in [0.5*ln2,22], return (exp(|x|)+1/exp(|x|)/2; */
64 if (ix
< 0x40360000) {
69 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
70 if (ix
< 0x40862E42) return half
*exp(fabs(x
));
72 /* |x| in [log(maxdouble), overflowthresold] */
75 ((ix
==0x408633ce)&&(lx
<=(u_int32_t
)0x8fb9f87d))) {
76 w
= exp(half
*fabs(x
));
81 /* |x| > overflowthresold, cosh(x) overflow */
85 #if LDBL_MANT_DIG == 53
86 __strong_alias(coshl
, cosh
);
87 #endif /* LDBL_MANT_DIG == 53 */