Searched defs:complex (Results 1 – 11 of 11) sorted by relevance
16 struct complex { struct21 float cabsf __P((struct complex)); argument
16 struct complex { struct21 double cabs(struct complex); argument
3 template<typename T> struct complex { struct10 complex<double> z; in std_example() argument
170 struct complex { double x, y; }; argument
3 #define complex _Complex macro
11 #define complex _Complex macro
21 template<typename T> struct complex {}; struct
7 class complex : public BB, BB1 { class9 complex() in complex() function in complex
1072 class complex { class1075 constexpr complex(int re = 0, int im = 0) : re(re), im(im) {} in complex() function in Complex::complex1076 constexpr complex(const complex &o) : re(o.re), im(o.im) {} in complex() function in Complex::complex
46 _Complex float complex; member
1210 ComplexPairTy complex = EmitComplexExpr(init); in EmitExprAsInit() local