Lines Matching refs:sl2
17 vector signed long long sl, sl2; variable
101 sl = sl2; in foo()
122 sc = sl2; // expected-error {{incompatible type}} in foo()
169 fd = (vector double)sl2; in foo()
208 ++sl2; in foo()
248 --sl2; in foo()
288 sl = +sl2; in foo()
314 sl = -sl2; in foo()
340 sl = ~sl2; in foo()
389 sl = sl + sl2; in foo()
411 sc += sl2; // expected-error {{cannot convert}} in foo()
427 sl += sl2; in foo()
461 sl -= sl2; in foo()
496 sl *= sl2; in foo()
530 sl /= sl2; in foo()
564 sl %= sl2; in foo()
595 fd = fd & sl2; // expected-error {{invalid operands}} in foo()
612 sc &= sl2; // expected-error {{cannot convert}} in foo()
628 sl &= sl2; in foo()
659 sl |= sl2; in foo()
693 sl ^= sl2; in foo()
751 sl = sl << sl2; in foo()
777 sc <<= sl2; // expected-error {{vector operands do not have the same number of elements}} in foo()
792 sl <<= sl2; in foo()
851 sl = sl >> sl2; in foo()
877 sc >>= sl2; // expected-error {{vector operands do not have the same number of elements}} in foo()
892 sl >>= sl2; in foo()
925 (void)(sl == sl2); in foo()
952 (void)(sl != sl2); in foo()
976 (void)(sl <= sl2); in foo()
1000 (void)(sl >= sl2); in foo()
1024 (void)(sl < sl2); in foo()
1048 (void)(sl > sl2); in foo()