Searched defs:complex (Results 1 – 9 of 9) sorted by relevance
115 struct complex struct122 complex(const _Tp& = _Tp(), const _Tp & = _Tp()); argument140 complex<_Tp>& operator=(const _Tp&); argument155 complex<_Tp>& operator=(const complex<_Up>&); argument178 complex<_Tp>::real() { return _M_real; } in real() argument194 complex<_Tp>::complex(const _Tp& __r, const _Tp& __i) in complex() function200 complex<_Tp>::complex(const complex<_Up>& __z) in complex() function
1 struct complex struct7 struct complex cmplx (float, float); argument
14 complex() { re=im=0; magic=MAGIC; } in complex() function15 complex(double d) { re=d; im=0; magic=MAGIC; } in complex() function16 complex(double d, double d2) {re=d; im=d2; magic=MAGIC; } in complex() function
56 template<typename _Tp> class complex; variable137 complex<_Tp>::complex(const _Tp& __r, const _Tp& __i) in complex() function143 complex<_Tp>::complex(const complex<_Up>& __z) in complex() function
11 template<typename _Tp> class complex; variable24 complex<double>::complex(double __r, double __i) in complex() function
33 #define complex _Complex macro
3 typedef struct{double re,im;} complex; typedef
6 } complex; typedef
1953 ComplexPairTy complex = EmitComplexExpr(init); in EmitExprAsInit() local