Lines Matching refs:v2sa

6 void test1(v2u v2ua, v2s v2sa, v2f v2fa) {  in test1()  argument
16 …v2ua = (v2ua==v2sa); // expected-warning{{incompatible vector types assigning to 'v2u' (vector of … in test1()
17 v2sa = (v2ua==v2sa); in test1()
30 void testLogicalVecVec(v2u v2ua, v2s v2sa, v2f v2fa) { in testLogicalVecVec() argument
35 …v2ua = v2sa && v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
36 …v2ua = v2sa || v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
41 …v2ua = v2sa && v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
42 …v2ua = v2sa || v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
44v2sa = v2sa && v2sa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
45v2sa = v2sa || v2sa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
47v2sa = v2ua && v2ua; // expected-error {{logical expression with vector types 'v2u' (vector of 2 '… in testLogicalVecVec()
48v2sa = v2ua || v2ua; // expected-error {{logical expression with vector types 'v2u' (vector of 2 '… in testLogicalVecVec()
50v2sa = v2sa && v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
51v2sa = v2sa || v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
53v2sa = v2sa && v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
54v2sa = v2sa || v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
56v2sa = v2ua && v2fa; // expected-error {{logical expression with vector types 'v2u' (vector of 2 '… in testLogicalVecVec()
57v2sa = v2ua || v2fa; // expected-error {{logical expression with vector types 'v2u' (vector of 2 '… in testLogicalVecVec()
62 …v2fa = v2sa && v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
63 …v2fa = v2sa || v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
71 …v2fa = v2sa && v2sa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
72 …v2fa = v2sa || v2sa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
74 …v2fa = v2sa && v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
75 …v2fa = v2sa || v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
78 void testLogicalVecScalar(v2u v2ua, v2s v2sa, v2f v2fa) { in testLogicalVecScalar() argument
83v2sa = v2sa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
84v2sa = v2sa || u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
86 …v2ua = v2sa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
87 …v2ua = v2sa || u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
88v2sa = v2ua && u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
89v2sa = v2ua || u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
94v2sa = v2fa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
95v2sa = v2fa || u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
101v2sa = v2sa && s1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
102v2sa = v2sa || s1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
104 …v2ua = v2sa && s1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
105 …v2ua = v2sa || s1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
107v2sa = v2ua && s1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
108v2sa = v2ua || s1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
113v2sa = v2fa && s1; // expected-error {{cannot convert between scalar type 'int' and vector type 'v… in testLogicalVecScalar()
114v2sa = v2fa || s1; // expected-error {{cannot convert between scalar type 'int' and vector type 'v… in testLogicalVecScalar()
120v2sa = v2sa && f1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
121v2sa = v2sa || f1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
123 …v2ua = v2sa && f1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
124 …v2ua = v2sa || f1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
126v2sa = v2ua && f1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
127v2sa = v2ua || f1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
132v2sa = v2fa && f1; // expected-error {{logical expression with vector type 'v2f' (vector of 2 'flo… in testLogicalVecScalar()
133v2sa = v2fa || f1; // expected-error {{logical expression with vector type 'v2f' (vector of 2 'flo… in testLogicalVecScalar()