2 /* @(#)e_cosh.c 1.3 95/01/18 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunSoft, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
11 * ====================================================
15 static char rcsid
[] = "$FreeBSD: src/lib/msun/src/e_cosh.c,v 1.8 2005/02/04 18:26:05 das Exp $";
20 * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2
21 * 1. Replace x by |x| (cosh(x) = cosh(-x)).
24 * 0 <= x <= ln2/2 : cosh(x) := 1 + -------------------
28 * ln2/2 <= x <= 22 : cosh(x) := -------------------
30 * 22 <= x <= lnovft : cosh(x) := exp(x)/2
31 * lnovft <= x <= ln2ovft: cosh(x) := exp(x/2)/2 * exp(x/2)
32 * ln2ovft < x : cosh(x) := huge*huge (overflow)
35 * cosh(x) is |x| if x is +INF, -INF, or NaN.
36 * only cosh(0)=1 is exact for finite x.
40 #include "math_private.h"
42 static const double one
= 1.0, half
=0.5, huge
= 1.0e300
;
45 __ieee754_cosh(double x
)
51 /* High word of |x|. */
56 if(ix
>=0x7ff00000) return x
*x
;
58 /* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
62 if (ix
<0x3c800000) return w
; /* cosh(tiny) = 1 */
63 return one
+(t
*t
)/(w
+w
);
66 /* |x| in [0.5*ln2,22], return (exp(|x|)+1/exp(|x|)/2; */
67 if (ix
< 0x40360000) {
68 t
= __ieee754_exp(fabs(x
));
72 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
73 if (ix
< 0x40862E42) return half
*__ieee754_exp(fabs(x
));
75 /* |x| in [log(maxdouble), overflowthresold] */
78 ((ix
==0x408633ce)&&(lx
<=(uint32_t)0x8fb9f87d))) {
79 w
= __ieee754_exp(half
*fabs(x
));
84 /* |x| > overflowthresold, cosh(x) overflow */