Lines Matching refs:Complex
14 ; class Complex {
20 ; Complex() : real_(0), imaginary_(0) { }
21 ; Complex(float real, float imaginary) : real_(real), imaginary_(imaginary) { }
22 ; Complex(const Complex &rhs) : real_(rhs.real()), imaginary_(rhs.imaginary()) { }
28 ;void test(Complex * __restrict__ out, Complex * __restrict__ in, size_t out_start, size_t size)
33 ; Complex t0 = in[out_ix];
43 %class.Complex = type { float, float }
45 define void @_Z4testP7ComplexS0_mm(%class.Complex* noalias nocapture %out, %class.Complex* noalias …
62 %arrayidx = getelementptr inbounds %class.Complex, %class.Complex* %in, i64 %add
63 %0 = bitcast %class.Complex* %arrayidx to i32*
65 %imaginary_.i.i = getelementptr inbounds %class.Complex, %class.Complex* %in, i64 %add, i32 1
68 %arrayidx1 = getelementptr inbounds %class.Complex, %class.Complex* %out, i64 %add
69 %4 = bitcast %class.Complex* %arrayidx1 to i64*