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()
44 …v2sa = v2sa && v2sa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
45 …v2sa = v2sa || v2sa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
47 …v2sa = v2ua && v2ua; // expected-error {{logical expression with vector types 'v2u' (vector of 2 '… in testLogicalVecVec()
48 …v2sa = v2ua || v2ua; // expected-error {{logical expression with vector types 'v2u' (vector of 2 '… in testLogicalVecVec()
50 …v2sa = v2sa && v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
51 …v2sa = v2sa || v2ua; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
53 …v2sa = v2sa && v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
54 …v2sa = v2sa || v2fa; // expected-error {{logical expression with vector types 'v2s' (vector of 2 '… in testLogicalVecVec()
56 …v2sa = v2ua && v2fa; // expected-error {{logical expression with vector types 'v2u' (vector of 2 '… in testLogicalVecVec()
57 …v2sa = 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
83 …v2sa = v2sa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
84 …v2sa = 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()
88 …v2sa = v2ua && u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
89 …v2sa = v2ua || u1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
94 …v2sa = v2fa && u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
95 …v2sa = v2fa || u1; // expected-error {{cannot convert between scalar type 'unsigned int' and vecto… in testLogicalVecScalar()
101 …v2sa = v2sa && s1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
102 …v2sa = 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()
107 …v2sa = v2ua && s1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
108 …v2sa = v2ua || s1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
113 …v2sa = v2fa && s1; // expected-error {{cannot convert between scalar type 'int' and vector type 'v… in testLogicalVecScalar()
114 …v2sa = v2fa || s1; // expected-error {{cannot convert between scalar type 'int' and vector type 'v… in testLogicalVecScalar()
120 …v2sa = v2sa && f1; // expected-error {{logical expression with vector type 'v2s' (vector of 2 'int… in testLogicalVecScalar()
121 …v2sa = 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()
126 …v2sa = v2ua && f1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
127 …v2sa = v2ua || f1; // expected-error {{logical expression with vector type 'v2u' (vector of 2 'uns… in testLogicalVecScalar()
132 …v2sa = v2fa && f1; // expected-error {{logical expression with vector type 'v2f' (vector of 2 'flo… in testLogicalVecScalar()
133 …v2sa = v2fa || f1; // expected-error {{logical expression with vector type 'v2f' (vector of 2 'flo… in testLogicalVecScalar()