Lines Matching refs:cosix
38 FLOAT sinix, cosix; in M_DECL_FUNC() local
39 M_SINCOS (__imag__ x, &sinix, &cosix); in M_DECL_FUNC()
40 __imag__ res = M_COPYSIGN (0, sinix * cosix); in M_DECL_FUNC()
63 FLOAT sinix, cosix; in M_DECL_FUNC() local
72 M_SINCOS (__imag__ x, &sinix, &cosix); in M_DECL_FUNC()
77 cosix = 1; in M_DECL_FUNC()
89 __imag__ res = 4 * sinix * cosix; in M_DECL_FUNC()
116 if (M_FABS (sinhrx) > M_FABS (cosix) * M_EPSILON) in M_DECL_FUNC()
117 den = sinhrx * sinhrx + cosix * cosix; in M_DECL_FUNC()
119 den = cosix * cosix; in M_DECL_FUNC()
121 __imag__ res = sinix * cosix / den; in M_DECL_FUNC()