Lines Matching refs:bc2
5 volatile vector bool char bc, bc2; variable
412 sc = sc + bc2; in test_add()
415 uc = uc + bc2; in test_add()
515 sc += bc2; in test_add_assign()
517 uc += bc2; in test_add_assign()
642 sc = sc - bc2; in test_sub()
645 uc = uc - bc2; in test_sub()
745 sc -= bc2; in test_sub_assign()
747 uc -= bc2; in test_sub_assign()
1127 bc = ~bc2; in test_not()
1259 sc = sc & bc2; in test_and()
1262 uc = uc & bc2; in test_and()
1264 bc = bc & bc2; in test_and()
1376 sc &= bc2; in test_and_assign()
1378 uc &= bc2; in test_and_assign()
1379 bc &= bc2; in test_and_assign()
1517 sc = sc | bc2; in test_or()
1520 uc = uc | bc2; in test_or()
1522 bc = bc | bc2; in test_or()
1634 sc |= bc2; in test_or_assign()
1636 uc |= bc2; in test_or_assign()
1637 bc |= bc2; in test_or_assign()
1775 sc = sc ^ bc2; in test_xor()
1778 uc = uc ^ bc2; in test_xor()
1780 bc = bc ^ bc2; in test_xor()
1892 sc ^= bc2; in test_xor_assign()
1894 uc ^= bc2; in test_xor_assign()
1895 bc ^= bc2; in test_xor_assign()
2799 bc = sc == bc2; in test_cmpeq()
2802 bc = uc == bc2; in test_cmpeq()
2804 bc = bc == bc2; in test_cmpeq()
2983 bc = sc != bc2; in test_cmpne()
2986 bc = uc != bc2; in test_cmpne()
2988 bc = bc != bc2; in test_cmpne()
3088 bc = bc >= bc2; in test_cmpge()
3176 bc = bc > bc2; in test_cmpgt()
3264 bc = bc <= bc2; in test_cmple()
3352 bc = bc < bc2; in test_cmplt()