Lines Matching refs:sl2
15 volatile vector signed long long sl, sl2; variable
54 sl = sl2; in test_assign()
91 sl = +sl2; in test_pos()
119 sl = -sl2; in test_neg()
163 ++sl2; in test_preinc()
209 sl2++; in test_postinc()
255 --sl2; in test_predec()
301 sl2--; in test_postdec()
432 sl = sl + sl2; in test_add()
434 sl = bl + sl2; in test_add()
529 sl += sl2; in test_add_assign()
662 sl = sl - sl2; in test_sub()
664 sl = bl - sl2; in test_sub()
759 sl -= sl2; in test_sub_assign()
816 sl = sl * sl2; in test_mul()
871 sl *= sl2; in test_mul_assign()
926 sl = sl / sl2; in test_div()
981 sl /= sl2; in test_div_assign()
1032 sl = sl % sl2; in test_rem()
1081 sl %= sl2; in test_rem_assign()
1137 sl = ~sl2; in test_not()
1282 sl = sl & sl2; in test_and()
1284 sl = bl & sl2; in test_and()
1393 sl &= sl2; in test_and_assign()
1540 sl = sl | sl2; in test_or()
1542 sl = bl | sl2; in test_or()
1651 sl |= sl2; in test_or_assign()
1798 sl = sl ^ sl2; in test_xor()
1800 sl = bl ^ sl2; in test_xor()
1909 sl ^= sl2; in test_xor_assign()
2089 sl = sl << sl2; in test_sl()
2093 ul = ul << sl2; in test_sl()
2272 sl <<= sl2; in test_sl_assign()
2276 ul <<= sl2; in test_sl_assign()
2455 sl = sl >> sl2; in test_sr()
2459 ul = ul >> sl2; in test_sr()
2638 sl >>= sl2; in test_sr_assign()
2642 ul >>= sl2; in test_sr_assign()
2822 bl = sl == sl2; in test_cmpeq()
2824 bl = bl == sl2; in test_cmpeq()
3006 bl = sl != sl2; in test_cmpne()
3008 bl = bl != sl2; in test_cmpne()
3098 bl = sl >= sl2; in test_cmpge()
3186 bl = sl > sl2; in test_cmpgt()
3274 bl = sl <= sl2; in test_cmple()
3362 bl = sl < sl2; in test_cmplt()