Lines Matching refs:sl
17 vector signed long long sl, sl2; variable
58 sl = sl2; in foo()
84 sl = sc2; // expected-error {{incompatible type}} in foo()
123 sl = (vector signed long long)bl2; in foo()
144 sl = (vector signed long long)bc2; in foo()
183 sl++; in foo()
223 sl--; in foo()
245 sl = +sl2; in foo()
271 sl = -sl2; in foo()
297 sl = ~sl2; in foo()
346 sl = sl + sl2; in foo()
352 fd = sl + fd2; // 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()
585 sl &= sl2; in foo()
616 sl |= sl2; in foo()
650 sl ^= sl2; in foo()
708 sl = sl << sl2; in foo()
709 sl = sl << sl_scalar; in foo()
716 fd = sl << fd2; // expected-error {{integer is required}} in foo()
749 sl <<= sl2; in foo()
750 sl <<= sl_scalar; in foo()
808 sl = sl >> sl2; in foo()
809 sl = sl >> sl_scalar; in foo()
816 fd = sl >> fd2; // expected-error {{integer is required}} in foo()
849 sl >>= sl2; in foo()
850 sl >>= sl_scalar; 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()