Lines Matching defs:si2
13 vector signed int si, si2;
118 si = si2;
146 sc = si2; // expected-error {{incompatible type}}
195 ui = (vector unsigned int)si2;
229 ulll = (vector unsigned __int128)si2;
243 ++si2;
291 --si2;
339 si = +si2;
353 sc = +si2; // expected-error {{assigning to}}
354 ui = +si2; // expected-error {{assigning to}}
369 si = -si2;
383 sc = -si2; // expected-error {{assigning to}}
384 ui = -si2; // expected-error {{assigning to}}
399 si = ~si2;
413 sc = ~si2; // expected-error {{assigning to}}
414 ui = ~si2; // expected-error {{assigning to}}
452 si = si + si2;
481 sc += si2; // expected-error {{cannot convert}}
495 si += si2;
533 si -= si2;
572 si *= si2;
611 si /= si2;
649 si %= si2;
704 sc &= si2; // expected-error {{cannot convert}}
717 si &= si2;
752 si |= si2;
790 si ^= si2;
850 si = si << si2;
887 sc <<= si2; // expected-error {{vector operands do not have the same number of elements}}
897 si <<= si2;
962 si = si >> si2;
999 sc >>= si2; // expected-error {{vector operands do not have the same number of elements}}
1009 si >>= si2;
1050 (void)(si == si2);
1081 (void)(si != si2);
1109 (void)(si <= si2);
1137 (void)(si >= si2);
1165 (void)(si < si2);
1193 (void)(si > si2);