Lines Matching defs:sl2
17 vector signed long long sl, sl2;
58 sl = sl2;
79 sc = sl2; // expected-error {{incompatible type}}
126 fd = (vector double)sl2;
165 ++sl2;
205 --sl2;
245 sl = +sl2;
271 sl = -sl2;
297 sl = ~sl2;
346 sl = sl + sl2;
368 sc += sl2; // expected-error {{cannot convert}}
384 sl += sl2;
418 sl -= sl2;
453 sl *= sl2;
487 sl /= sl2;
521 sl %= sl2;
552 fd = fd & sl2; // expected-error {{invalid operands}}
569 sc &= sl2; // expected-error {{cannot convert}}
585 sl &= sl2;
616 sl |= sl2;
650 sl ^= sl2;
708 sl = sl << sl2;
734 sc <<= sl2; // expected-error {{vector operands do not have the same number of elements}}
749 sl <<= sl2;
808 sl = sl >> sl2;
834 sc >>= sl2; // expected-error {{vector operands do not have the same number of elements}}
849 sl >>= sl2;
882 (void)(sl == sl2);
909 (void)(sl != sl2);
933 (void)(sl <= sl2);
957 (void)(sl >= sl2);
981 (void)(sl < sl2);
1005 (void)(sl > sl2);