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