Lines Matching refs:si2
13 vector signed int si, si2;
54 si = si2;
78 sc = si2; // expected-error {{incompatible type}}
121 ui = (vector unsigned int)si2;
161 ++si2;
201 --si2;
241 si = +si2;
251 sc = +si2; // expected-error {{assigning to}}
252 ui = +si2; // expected-error {{assigning to}}
267 si = -si2;
277 sc = -si2; // expected-error {{assigning to}}
278 ui = -si2; // expected-error {{assigning to}}
293 si = ~si2;
303 sc = ~si2; // expected-error {{assigning to}}
304 ui = ~si2; // expected-error {{assigning to}}
342 si = si + si2;
367 sc += si2; // expected-error {{cannot convert}}
380 si += si2;
414 si -= si2;
449 si *= si2;
483 si /= si2;
517 si %= si2;
568 sc &= si2; // expected-error {{cannot convert}}
581 si &= si2;
612 si |= si2;
646 si ^= si2;
702 si = si << si2;
733 sc <<= si2; // expected-error {{vector operands do not have the same number of elements}}
743 si <<= si2;
802 si = si >> si2;
833 sc >>= si2; // expected-error {{vector operands do not have the same number of elements}}
843 si >>= si2;
878 (void)(si == si2);
905 (void)(si != si2);
929 (void)(si <= si2);
953 (void)(si >= si2);
977 (void)(si < si2);
1001 (void)(si > si2);