Lines Matching refs:sl
16 volatile vector signed long long sl, sl2; variable
51 sl = sl2; in test_assign()
88 sl = +sl2; in test_pos()
113 sl = -sl2; in test_neg()
349 sl = sl + sl2; in test_add()
353 sl = sl + bl2; in test_add()
357 sl = bl + sl2; in test_add()
435 sl += sl2; in test_add_assign()
439 sl += bl2; in test_add_assign()
537 sl = sl - sl2; in test_sub()
541 sl = sl - bl2; in test_sub()
545 sl = bl - sl2; in test_sub()
623 sl -= sl2; in test_sub_assign()
627 sl -= bl2; in test_sub_assign()
677 sl = sl * sl2; in test_mul()
723 sl *= sl2; in test_mul_assign()
769 sl = sl / sl2; in test_div()
815 sl /= sl2; in test_div_assign()
861 sl = sl % sl2; in test_rem()
902 sl %= sl2; in test_rem_assign()
945 sl = ~sl2; in test_not()
1048 sl = sl & sl2; in test_and()
1052 sl = sl & bl2; in test_and()
1056 sl = bl & sl2; in test_and()
1145 sl &= sl2; in test_and_assign()
1149 sl &= bl2; in test_and_assign()
1258 sl = sl | sl2; in test_or()
1262 sl = sl | bl2; in test_or()
1266 sl = bl | sl2; in test_or()
1355 sl |= sl2; in test_or_assign()
1359 sl |= bl2; in test_or_assign()
1468 sl = sl ^ sl2; in test_xor()
1472 sl = sl ^ bl2; in test_xor()
1476 sl = bl ^ sl2; in test_xor()
1565 sl ^= sl2; in test_xor_assign()
1569 sl ^= bl2; in test_xor_assign()
1700 sl = sl << sl2; in test_sl()
1704 sl = sl << ul2; in test_sl()
1711 sl = sl << cnt; in test_sl()
1714 sl = sl << 5; in test_sl()
1851 sl <<= sl2; in test_sl_assign()
1855 sl <<= ul2; in test_sl_assign()
1862 sl <<= cnt; in test_sl_assign()
1865 sl <<= 5; in test_sl_assign()
2002 sl = sl >> sl2; in test_sr()
2006 sl = sl >> ul2; in test_sr()
2013 sl = sl >> cnt; in test_sr()
2016 sl = sl >> 5; in test_sr()
2153 sl >>= sl2; in test_sr_assign()
2157 sl >>= ul2; in test_sr_assign()
2164 sl >>= cnt; in test_sr_assign()
2167 sl >>= 5; in test_sr_assign()
2305 bl = sl == sl2; in test_cmpeq()
2310 bl = sl == bl2; in test_cmpeq()
2460 bl = sl != sl2; in test_cmpne()
2465 bl = sl != bl2; in test_cmpne()
2555 bl = sl >= sl2; in test_cmpge()
2630 bl = sl > sl2; in test_cmpgt()
2705 bl = sl <= sl2; in test_cmple()
2780 bl = sl < sl2; in test_cmplt()