Lines Matching refs:x
27 M_DECL_FUNC (__ctanh) (CFLOAT x) in M_DECL_FUNC()
31 if (__glibc_unlikely (!isfinite (__real__ x) || !isfinite (__imag__ x))) in M_DECL_FUNC()
33 if (isinf (__real__ x)) in M_DECL_FUNC()
35 __real__ res = M_COPYSIGN (1, __real__ x); in M_DECL_FUNC()
36 if (isfinite (__imag__ x) && M_FABS (__imag__ x) > 1) in M_DECL_FUNC()
39 M_SINCOS (__imag__ x, &sinix, &cosix); in M_DECL_FUNC()
43 __imag__ res = M_COPYSIGN (0, __imag__ x); in M_DECL_FUNC()
45 else if (__imag__ x == 0) in M_DECL_FUNC()
47 res = x; in M_DECL_FUNC()
51 if (__real__ x == 0) in M_DECL_FUNC()
52 __real__ res = __real__ x; in M_DECL_FUNC()
57 if (isinf (__imag__ x)) in M_DECL_FUNC()
70 if (__glibc_likely (M_FABS (__imag__ x) > M_MIN)) in M_DECL_FUNC()
72 M_SINCOS (__imag__ x, &sinix, &cosix); in M_DECL_FUNC()
76 sinix = __imag__ x; in M_DECL_FUNC()
80 if (M_FABS (__real__ x) > t) in M_DECL_FUNC()
88 __real__ res = M_COPYSIGN (1, __real__ x); in M_DECL_FUNC()
90 __real__ x = M_FABS (__real__ x); in M_DECL_FUNC() local
91 __real__ x -= t; in M_DECL_FUNC()
93 if (__real__ x > t) in M_DECL_FUNC()
100 __imag__ res /= M_EXP (2 * __real__ x); in M_DECL_FUNC()
105 if (M_FABS (__real__ x) > M_MIN) in M_DECL_FUNC()
107 sinhrx = M_SINH (__real__ x); in M_DECL_FUNC()
108 coshrx = M_COSH (__real__ x); in M_DECL_FUNC()
112 sinhrx = __real__ x; in M_DECL_FUNC()