• Home
  • Raw
  • Download

Lines Matching refs:sl2

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()
146 ++sl2; in test_preinc()
183 sl2++; in test_postinc()
220 --sl2; in test_predec()
257 sl2--; in test_postdec()
349 sl = sl + sl2; in test_add()
357 sl = bl + sl2; in test_add()
435 sl += sl2; in test_add_assign()
537 sl = sl - sl2; in test_sub()
545 sl = bl - sl2; in test_sub()
623 sl -= sl2; 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()
1056 sl = bl & sl2; in test_and()
1145 sl &= sl2; in test_and_assign()
1258 sl = sl | sl2; in test_or()
1266 sl = bl | sl2; in test_or()
1355 sl |= sl2; in test_or_assign()
1468 sl = sl ^ sl2; in test_xor()
1476 sl = bl ^ sl2; in test_xor()
1565 sl ^= sl2; in test_xor_assign()
1700 sl = sl << sl2; in test_sl()
1718 ul = ul << sl2; in test_sl()
1851 sl <<= sl2; in test_sl_assign()
1869 ul <<= sl2; in test_sl_assign()
2002 sl = sl >> sl2; in test_sr()
2020 ul = ul >> sl2; in test_sr()
2153 sl >>= sl2; in test_sr_assign()
2171 ul >>= sl2; in test_sr_assign()
2305 bl = sl == sl2; in test_cmpeq()
2315 bl = bl == sl2; in test_cmpeq()
2460 bl = sl != sl2; in test_cmpne()
2470 bl = bl != sl2; 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()