Lines Matching refs:sc2
3 volatile vector signed char sc, sc2; variable
45 sc = sc2; in test_assign()
82 sc = +sc2; in test_pos()
116 sc = -sc2; in test_neg()
154 ++sc2; in test_preinc()
200 sc2++; in test_postinc()
246 --sc2; in test_predec()
292 sc2--; in test_postdec()
411 sc = sc + sc2; in test_add()
413 sc = bc + sc2; in test_add()
514 sc += sc2; in test_add_assign()
641 sc = sc - sc2; in test_sub()
643 sc = bc - sc2; in test_sub()
744 sc -= sc2; in test_sub_assign()
807 sc = sc * sc2; in test_mul()
862 sc *= sc2; in test_mul_assign()
917 sc = sc / sc2; in test_div()
972 sc /= sc2; in test_div_assign()
1023 sc = sc % sc2; in test_rem()
1072 sc %= sc2; in test_rem_assign()
1125 sc = ~sc2; in test_not()
1258 sc = sc & sc2; in test_and()
1260 sc = bc & sc2; in test_and()
1375 sc &= sc2; in test_and_assign()
1516 sc = sc | sc2; in test_or()
1518 sc = bc | sc2; in test_or()
1633 sc |= sc2; in test_or_assign()
1774 sc = sc ^ sc2; in test_xor()
1776 sc = bc ^ sc2; in test_xor()
1891 sc ^= sc2; in test_xor_assign()
2062 sc = sc << sc2; in test_sl()
2066 uc = uc << sc2; in test_sl()
2245 sc <<= sc2; in test_sl_assign()
2249 uc <<= sc2; in test_sl_assign()
2428 sc = sc >> sc2; in test_sr()
2432 uc = uc >> sc2; in test_sr()
2611 sc >>= sc2; in test_sr_assign()
2615 uc >>= sc2; in test_sr_assign()
2798 bc = sc == sc2; in test_cmpeq()
2800 bc = bc == sc2; in test_cmpeq()
2982 bc = sc != sc2; in test_cmpne()
2984 bc = bc != sc2; in test_cmpne()
3086 bc = sc >= sc2; in test_cmpge()
3174 bc = sc > sc2; in test_cmpgt()
3262 bc = sc <= sc2; in test_cmple()
3350 bc = sc < sc2; in test_cmplt()