Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1906 serge 1
 
2
/*
3
 * ====================================================
4
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5
 *
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
9
 * is preserved.
10
 * ====================================================
11
 */
12
13
 
14
 * Method :
15
 * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
16
 *	1. Replace x by |x| (sinh(-x) = -sinh(x)).
17
 *	2.
18
 *		                                    E + E/(E+1)
19
 *	    0        <= x <= 22     :  sinh(x) := --------------, E=expm1(x)
20
 *			       			        2
21
 *
22
 *	    22       <= x <= lnovft :  sinh(x) := exp(x)/2
23
 *	    lnovft   <= x <= ln2ovft:  sinh(x) := exp(x/2)/2 * exp(x/2)
24
 *	    ln2ovft  <  x	    :  sinh(x) := x*shuge (overflow)
25
 *
26
 * Special cases:
27
 *	sinh(x) is |x| if x is +INF, -INF, or NaN.
28
 *	only sinh(0)=0 is exact for finite x.
29
 */
30
31
 
32
33
 
34
static const double one = 1.0, shuge = 1.0e307;
35
#else
36
static double one = 1.0, shuge = 1.0e307;
37
#endif
38
39
 
40
	double sinh(double x)
41
#else
42
	double sinh(x)
43
	double x;
44
#endif
45
{
46
	double t,w,h;
47
	__int32_t ix,jx;
48
	__uint32_t lx;
49
50
 
51
	GET_HIGH_WORD(jx,x);
52
	ix = jx&0x7fffffff;
53
54
 
55
	if(ix>=0x7ff00000) return x+x;
56
57
 
58
	if (jx<0) h = -h;
59
    /* |x| in [0,22], return sign(x)*0.5*(E+E/(E+1))) */
60
	if (ix < 0x40360000) {		/* |x|<22 */
61
	    if (ix<0x3e300000) 		/* |x|<2**-28 */
62
		if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
63
	    t = expm1(fabs(x));
64
	    if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
65
	    return h*(t+t/(t+one));
66
	}
67
68
 
69
	if (ix < 0x40862E42)  return h * exp(fabs(x));
70
71
 
72
	GET_LOW_WORD(lx,x);
73
       if (ix<0x408633CE || (ix==0x408633ce && lx<=(__uint32_t)0x8fb9f87d)) {
74
	    w = exp(0.5*fabs(x));
75
	    t = h*w;
76
	    return t*w;
77
	}
78
79
 
80
	return x*shuge;
81
}
82