Home
last modified time | relevance | path

Searched defs:complex (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_complex.h36 struct complex { struct
38 typedef complex<_Tp> _Self; argument
41 complex() : _M_re(0), _M_im(0) {} in complex() argument
42 complex(const value_type& __x) in complex() argument
44 complex(const value_type& __x, const value_type& __y) in complex() argument
46 complex(const _Self& __z) in complex() argument
57 explicit complex(const complex<_Tp2>& __z) in complex() argument
69 value_type real() const { return _M_re; } in real()
70 value_type imag() const { return _M_im; } in imag()
130 template <class _Tp2> _Self& operator/= (const complex<_Tp2>& __z) { argument
[all …]