Lines Matching refs:bc2
6 volatile vector bool char bc, bc2; variable
278 sc = sc + bc2; in test_add()
290 uc = uc + bc2; in test_add()
388 sc += bc2; in test_add_assign()
396 uc += bc2; in test_add_assign()
466 sc = sc - bc2; in test_sub()
478 uc = uc - bc2; in test_sub()
576 sc -= bc2; in test_sub_assign()
584 uc -= bc2; in test_sub_assign()
921 bc = ~bc2; in test_not()
965 sc = sc & bc2; in test_and()
977 uc = uc & bc2; in test_and()
985 bc = bc & bc2; in test_and()
1086 sc &= bc2; in test_and_assign()
1094 uc &= bc2; in test_and_assign()
1098 bc &= bc2; in test_and_assign()
1175 sc = sc | bc2; in test_or()
1187 uc = uc | bc2; in test_or()
1195 bc = bc | bc2; in test_or()
1296 sc |= bc2; in test_or_assign()
1304 uc |= bc2; in test_or_assign()
1308 bc |= bc2; in test_or_assign()
1385 sc = sc ^ bc2; in test_xor()
1397 uc = uc ^ bc2; in test_xor()
1405 bc = bc ^ bc2; in test_xor()
1506 sc ^= bc2; in test_xor_assign()
1514 uc ^= bc2; in test_xor_assign()
1518 bc ^= bc2; in test_xor_assign()
2202 bc = sc == bc2; in test_cmpeq()
2217 bc = uc == bc2; in test_cmpeq()
2227 bc = bc == bc2; in test_cmpeq()
2357 bc = sc != bc2; in test_cmpne()
2372 bc = uc != bc2; in test_cmpne()
2382 bc = bc != bc2; in test_cmpne()
2517 bc = bc >= bc2; in test_cmpge()
2592 bc = bc > bc2; in test_cmpgt()
2667 bc = bc <= bc2; in test_cmple()
2742 bc = bc < bc2; in test_cmplt()