Lines Matching refs:sinh
7605 # overflow. Thus, we calculate sinh(X) as follows: #
7612 # 5. (|X| > 16480 log2) sinh(X) must overflow. Return #
7696 # fp0 = sinh(X) #
7706 # SINH #
7709 # 2. (|X| <= 16380 log2) Sinh(X) is obtained by the formula #
7711 # sinh(X) = sgn*(1/2)*( z + z/(1+z) ). #
7717 # sinh(X) = sign(X) * exp(|X|)/2. #
7719 # Thus, we calculate sinh(X) as follows: #
7724 # sinh(X) := sgnFact * exp(Y'). #
7727 # 5. (|X| > 16480 log2) sinh(X) must overflow. Return #
7746 #--Y = |X|, Z = EXPM1(Y), SINH(X) = SIGN(X)*(1/2)*( Z + Z/(1+Z) )
7801 #--SINH(X) = X FOR DENORMALIZED X