blob: 5c3614efbf4757a4688a080dc1cd5cd156fb9922 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08002/*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 *
6 * Developed at SunSoft, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
9 * is preserved.
10 * ====================================================
11 */
12
Elliott Hughes4088e3a2023-08-03 13:33:56 -070013/* cosh(x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080014 * Method :
15 * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2
16 * 1. Replace x by |x| (cosh(x) = cosh(-x)).
17 * 2.
18 * [ exp(x) - 1 ]^2
19 * 0 <= x <= ln2/2 : cosh(x) := 1 + -------------------
20 * 2*exp(x)
21 *
22 * exp(x) + 1/exp(x)
23 * ln2/2 <= x <= 22 : cosh(x) := -------------------
24 * 2
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)
28 *
29 * Special cases:
30 * cosh(x) is |x| if x is +INF, -INF, or NaN.
31 * only cosh(0)=1 is exact for finite x.
32 */
33
Elliott Hughes460ad742014-09-12 14:00:02 -070034#include <float.h>
35
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080036#include "math.h"
37#include "math_private.h"
38
39static const double one = 1.0, half=0.5, huge = 1.0e300;
40
41double
Elliott Hughes4088e3a2023-08-03 13:33:56 -070042cosh(double x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080043{
44 double t,w;
45 int32_t ix;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080046
47 /* High word of |x|. */
48 GET_HIGH_WORD(ix,x);
49 ix &= 0x7fffffff;
50
51 /* x is INF or NaN */
52 if(ix>=0x7ff00000) return x*x;
53
54 /* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
55 if(ix<0x3fd62e43) {
56 t = expm1(fabs(x));
57 w = one+t;
58 if (ix<0x3c800000) return w; /* cosh(tiny) = 1 */
59 return one+(t*t)/(w+w);
60 }
61
62 /* |x| in [0.5*ln2,22], return (exp(|x|)+1/exp(|x|)/2; */
63 if (ix < 0x40360000) {
Elliott Hughes4088e3a2023-08-03 13:33:56 -070064 t = exp(fabs(x));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080065 return half*t+half/t;
66 }
67
68 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
Elliott Hughes4088e3a2023-08-03 13:33:56 -070069 if (ix < 0x40862E42) return half*exp(fabs(x));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080070
71 /* |x| in [log(maxdouble), overflowthresold] */
Elliott Hughesa0ee0782013-01-30 19:06:37 -080072 if (ix<=0x408633CE)
73 return __ldexp_exp(fabs(x), -1);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074
75 /* |x| > overflowthresold, cosh(x) overflow */
76 return huge*huge;
77}
Elliott Hughes460ad742014-09-12 14:00:02 -070078
79#if (LDBL_MANT_DIG == 53)
80__weak_reference(cosh, coshl);
81#endif