Lines Matching refs:imag
34 return complex<FLOAT> (cos (real (x)) * cosh (imag (x)), in cos()
35 - sin (real (x)) * sinh (imag (x))); in cos()
41 return complex<FLOAT> (cosh (real (x)) * cos (imag (x)), in cosh()
42 sinh (real (x)) * sin (imag (x))); in cosh()
48 return polar (FLOAT (exp (real (x))), imag (x)); in exp()
63 return polar (FLOAT (exp (logr * real (y) - imag (y) * t)), in pow()
64 FLOAT (imag (y) * logr + real (y) * t)); in pow()
82 return complex<FLOAT> (sin (real (x)) * cosh (imag (x)), in sin()
83 cos (real (x)) * sinh (imag (x))); in sin()
89 return complex<FLOAT> (sinh (real (x)) * cos (imag (x)), in sinh()
90 cosh (real (x)) * sin (imag (x))); in sinh()
126 return os << '(' << real (x) << ',' << imag (x) << ')'; in operator <<()
185 FLOAT ai = abs (imag (y)); in operator /()
190 t = real (y) / imag (y); in operator /()
191 d = imag (y) * (1 + t*t); in operator /()
192 nr = (real (x) * t + imag (x)) / d; in operator /()
193 ni = (imag (x) * t - real (x)) / d; in operator /()
197 t = imag (y) / real (y); in operator /()
199 nr = (real (x) + imag (x) * t) / d; in operator /()
200 ni = (imag (x) - real (x) * t) / d; in operator /()
209 FLOAT ai = abs (imag (y)); in operator /()
214 t = real (y) / imag (y); in operator /()
215 d = imag (y) * (1 + t*t); in operator /()
221 t = imag (y) / real (y); in operator /()
262 ni = imag (x) / nr / 2; in sqrt()
267 if (imag (x) < 0) in sqrt()
269 nr = imag (x) / ni / 2; in sqrt()