Home | History | Annotate | Download | only in src

Lines Matching full:sinh

19  * mathematically sinh(x) if defined to be (exp(x)-exp(-x))/2
20 * 1. Replace x by |x| (sinh(-x) = -sinh(x)).
23 * 0 <= x <= 22 : sinh(x) := --------------, E=expm1(x)
26 * 22 <= x <= lnovft : sinh(x) := exp(x)/2
27 * lnovft <= x <= ln2ovft: sinh(x) := exp(x/2)/2 * exp(x/2)
28 * ln2ovft < x : sinh(x) := x*shuge (overflow)
31 * sinh(x) is |x| if x is +INF, -INF, or NaN.
32 * only sinh(0)=0 is exact for finite x.
60 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
73 /* |x| > overflowthresold, sinh(x) overflow */
78 __weak_reference(sinh, sinhl);