Lines Matching refs:uc
4 volatile vector unsigned char uc, uc2; variable
46 uc = uc2; in test_assign()
83 uc = +uc2; in test_pos()
414 uc = uc + uc2; in test_add()
415 uc = uc + bc2; in test_add()
416 uc = bc + uc2; in test_add()
516 uc += uc2; in test_add_assign()
517 uc += bc2; in test_add_assign()
644 uc = uc - uc2; in test_sub()
645 uc = uc - bc2; in test_sub()
646 uc = bc - uc2; in test_sub()
746 uc -= uc2; in test_sub_assign()
747 uc -= bc2; in test_sub_assign()
808 uc = uc * uc2; in test_mul()
863 uc *= uc2; in test_mul_assign()
918 uc = uc / uc2; in test_div()
973 uc /= uc2; in test_div_assign()
1024 uc = uc % uc2; in test_rem()
1073 uc %= uc2; in test_rem_assign()
1126 uc = ~uc2; in test_not()
1261 uc = uc & uc2; in test_and()
1262 uc = uc & bc2; in test_and()
1263 uc = bc & uc2; in test_and()
1377 uc &= uc2; in test_and_assign()
1378 uc &= bc2; in test_and_assign()
1519 uc = uc | uc2; in test_or()
1520 uc = uc | bc2; in test_or()
1521 uc = bc | uc2; in test_or()
1635 uc |= uc2; in test_or_assign()
1636 uc |= bc2; in test_or_assign()
1777 uc = uc ^ uc2; in test_xor()
1778 uc = uc ^ bc2; in test_xor()
1779 uc = bc ^ uc2; in test_xor()
1893 uc ^= uc2; in test_xor_assign()
1894 uc ^= bc2; in test_xor_assign()
2066 uc = uc << sc2; in test_sl()
2067 uc = uc << uc2; in test_sl()
2068 uc = uc << cnt; in test_sl()
2069 uc = uc << 5; in test_sl()
2249 uc <<= sc2; in test_sl_assign()
2250 uc <<= uc2; in test_sl_assign()
2251 uc <<= cnt; in test_sl_assign()
2252 uc <<= 5; in test_sl_assign()
2432 uc = uc >> sc2; in test_sr()
2433 uc = uc >> uc2; in test_sr()
2434 uc = uc >> cnt; in test_sr()
2435 uc = uc >> 5; in test_sr()
2615 uc >>= sc2; in test_sr_assign()
2616 uc >>= uc2; in test_sr_assign()
2617 uc >>= cnt; in test_sr_assign()
2618 uc >>= 5; in test_sr_assign()
2801 bc = uc == uc2; in test_cmpeq()
2802 bc = uc == bc2; in test_cmpeq()
2985 bc = uc != uc2; in test_cmpne()
2986 bc = uc != bc2; in test_cmpne()
3087 bc = uc >= uc2; in test_cmpge()
3175 bc = uc > uc2; in test_cmpgt()
3263 bc = uc <= uc2; in test_cmple()
3351 bc = uc < uc2; in test_cmplt()