Lines Matching refs:x
27 M_DECL_FUNC (__ctan) (CFLOAT x) in M_DECL_FUNC()
31 if (__glibc_unlikely (!isfinite (__real__ x) || !isfinite (__imag__ x))) in M_DECL_FUNC()
33 if (isinf (__imag__ x)) in M_DECL_FUNC()
35 if (isfinite (__real__ x) && M_FABS (__real__ x) > 1) in M_DECL_FUNC()
38 M_SINCOS (__real__ x, &sinrx, &cosrx); in M_DECL_FUNC()
42 __real__ res = M_COPYSIGN (0, __real__ x); in M_DECL_FUNC()
43 __imag__ res = M_COPYSIGN (1, __imag__ x); in M_DECL_FUNC()
45 else if (__real__ x == 0) in M_DECL_FUNC()
47 res = x; in M_DECL_FUNC()
52 if (__imag__ x == 0) in M_DECL_FUNC()
53 __imag__ res = __imag__ x; in M_DECL_FUNC()
57 if (isinf (__real__ x)) in M_DECL_FUNC()
70 if (__glibc_likely (M_FABS (__real__ x) > M_MIN)) in M_DECL_FUNC()
72 M_SINCOS (__real__ x, &sinrx, &cosrx); in M_DECL_FUNC()
76 sinrx = __real__ x; in M_DECL_FUNC()
80 if (M_FABS (__imag__ x) > t) in M_DECL_FUNC()
88 __imag__ res = M_COPYSIGN (1, __imag__ x); in M_DECL_FUNC()
90 __imag__ x = M_FABS (__imag__ x); in M_DECL_FUNC() local
91 __imag__ x -= t; in M_DECL_FUNC()
93 if (__imag__ x > t) in M_DECL_FUNC()
100 __real__ res /= M_EXP (2 * __imag__ x); in M_DECL_FUNC()
105 if (M_FABS (__imag__ x) > M_MIN) in M_DECL_FUNC()
107 sinhix = M_SINH (__imag__ x); in M_DECL_FUNC()
108 coshix = M_COSH (__imag__ x); in M_DECL_FUNC()
112 sinhix = __imag__ x; in M_DECL_FUNC()