Symbol: imag
headers/cpp/std/complext.cc
126
return os << '(' << real (x) << ',' << imag (x) << ')';
headers/cpp/std/complext.cc
185
FLOAT ai = abs (imag (y));
headers/cpp/std/complext.cc
190
t = real (y) / imag (y);
headers/cpp/std/complext.cc
191
d = imag (y) * (1 + t*t);
headers/cpp/std/complext.cc
192
nr = (real (x) * t + imag (x)) / d;
headers/cpp/std/complext.cc
193
ni = (imag (x) * t - real (x)) / d;
headers/cpp/std/complext.cc
197
t = imag (y) / real (y);
headers/cpp/std/complext.cc
199
nr = (real (x) + imag (x) * t) / d;
headers/cpp/std/complext.cc
200
ni = (imag (x) - real (x) * t) / d;
headers/cpp/std/complext.cc
209
FLOAT ai = abs (imag (y));
headers/cpp/std/complext.cc
214
t = real (y) / imag (y);
headers/cpp/std/complext.cc
215
d = imag (y) * (1 + t*t);
headers/cpp/std/complext.cc
221
t = imag (y) / real (y);
headers/cpp/std/complext.cc
262
ni = imag (x) / nr / 2;
headers/cpp/std/complext.cc
267
if (imag (x) < 0)
headers/cpp/std/complext.cc
269
nr = imag (x) / ni / 2;
headers/cpp/std/complext.cc
34
return complex<FLOAT> (cos (real (x)) * cosh (imag (x)),
headers/cpp/std/complext.cc
35
- sin (real (x)) * sinh (imag (x)));
headers/cpp/std/complext.cc
41
return complex<FLOAT> (cosh (real (x)) * cos (imag (x)),
headers/cpp/std/complext.cc
42
sinh (real (x)) * sin (imag (x)));
headers/cpp/std/complext.cc
48
return polar (FLOAT (exp (real (x))), imag (x));
headers/cpp/std/complext.cc
63
return polar (FLOAT (exp (logr * real (y) - imag (y) * t)),
headers/cpp/std/complext.cc
64
FLOAT (imag (y) * logr + real (y) * t));
headers/cpp/std/complext.cc
82
return complex<FLOAT> (sin (real (x)) * cosh (imag (x)),
headers/cpp/std/complext.cc
83
cos (real (x)) * sinh (imag (x)));
headers/cpp/std/complext.cc
89
return complex<FLOAT> (sinh (real (x)) * cos (imag (x)),
headers/cpp/std/complext.cc
90
cosh (real (x)) * sin (imag (x)));
headers/cpp/std/complext.h
133
imag (const complex<_FLT>& x) __attribute__ ((const));
headers/cpp/std/complext.h
138
return x.imag ();
headers/cpp/std/complext.h
156
return complex<_FLT> (real (x) + real (y), imag (x) + imag (y));
headers/cpp/std/complext.h
165
return complex<_FLT> (real (x) + y, imag (x));
headers/cpp/std/complext.h
174
return complex<_FLT> (x + real (y), imag (y));
headers/cpp/std/complext.h
183
return complex<_FLT> (real (x) - real (y), imag (x) - imag (y));
headers/cpp/std/complext.h
192
return complex<_FLT> (real (x) - y, imag (x));
headers/cpp/std/complext.h
201
return complex<_FLT> (x - real (y), - imag (y));
headers/cpp/std/complext.h
210
return complex<_FLT> (real (x) * real (y) - imag (x) * imag (y),
headers/cpp/std/complext.h
211
real (x) * imag (y) + imag (x) * real (y));
headers/cpp/std/complext.h
220
return complex<_FLT> (real (x) * y, imag (x) * y);
headers/cpp/std/complext.h
229
return complex<_FLT> (x * real (y), x * imag (y));
headers/cpp/std/complext.h
238
return complex<_FLT> (real (x) / y, imag (x) / y);
headers/cpp/std/complext.h
256
return complex<_FLT> (-real (x), -imag (x));
headers/cpp/std/complext.h
265
return real (x) == real (y) && imag (x) == imag (y);
headers/cpp/std/complext.h
274
return real (x) == y && imag (x) == 0;
headers/cpp/std/complext.h
283
return x == real (y) && imag (y) == 0;
headers/cpp/std/complext.h
292
return real (x) != real (y) || imag (x) != imag (y);
headers/cpp/std/complext.h
301
return real (x) != y || imag (x) != 0;
headers/cpp/std/complext.h
310
return x != real (y) || imag (y) != 0;
headers/cpp/std/complext.h
322
return hypot (real (x), imag (x));
headers/cpp/std/complext.h
331
return atan2 (imag (x), real (x));
headers/cpp/std/complext.h
349
return complex<_FLT> (real (x), -imag (x));
headers/cpp/std/complext.h
358
return real (x) * real (x) + imag (x) * imag (x);
headers/cpp/std/complext.h
64
_FLT imag () const { return im; }
headers/cpp/std/dcomplex.h
40
complex (const complex<float>& r): re (r.real ()), im (r.imag ()) { }
headers/cpp/std/dcomplex.h
49
double imag () const { return im; }
headers/cpp/std/dcomplex.h
87
: re (r.real ()), im (r.imag ())
headers/cpp/std/fcomplex.h
49
float imag () const { return im; }
headers/cpp/std/ldcomplex.h
40
complex (const complex<float>& r): re (r.real ()), im (r.imag ()) { }
headers/cpp/std/ldcomplex.h
41
complex (const complex<double>& r): re (r.real ()), im (r.imag ()) { }
headers/cpp/std/ldcomplex.h
49
long double imag () const { return im; }
headers/cpp/std/ldcomplex.h
87
: re (r.real ()), im (r.imag ())
headers/cpp/std/ldcomplex.h
91
: re (r.real ()), im (r.imag ())