Lines Matching refs:bc2
7 vector bool char bc, bc2; variable
48 bc = bc2; in foo()
64 sc = bc2; // expected-error {{incompatible type}} in foo()
66 uc = bc2; // expected-error {{incompatible type}} in foo()
102 bs = bc2; // expected-error {{incompatible type}} in foo()
103 bi = bc2; // expected-error {{incompatible type}} in foo()
104 bl = bc2; // expected-error {{incompatible type}} in foo()
105 fd = bc2; // expected-error {{incompatible type}} in foo()
111 sc = (vector signed char)bc2; in foo()
144 sl = (vector signed long long)bc2; in foo()
155 ++bc2; // expected-error {{cannot increment}} in foo()
195 --bc2; // expected-error {{cannot decrement}} in foo()
235 bc = +bc2; // expected-error {{invalid argument type}} in foo()
261 bc = -bc2; // expected-error {{invalid argument type}} in foo()
287 bc = ~bc2; in foo()
314 sc = sc + bc2; in foo()
321 uc = uc + bc2; in foo()
323 bc = bc + bc2; // expected-error {{invalid operands}} in foo()
325 bc = uc + bc2; // expected-error {{incompatible type}} in foo()
327 bc = sc + bc2; // expected-error {{incompatible type}} in foo()
356 sc += bc2; in foo()
360 uc += bc2; in foo()
362 bc += bc2; // expected-error {{invalid operands}} in foo()
396 bc = bc - bc2; // expected-error {{invalid operands}} in foo()
399 sc = sc - bc2; in foo()
404 bc -= bc2; // expected-error {{invalid operands}} in foo()
407 uc -= bc2; in foo()
431 bc = bc * bc2; // expected-error {{invalid operands}} in foo()
434 sc = sc * bc2; // expected-error {{cannot convert}} in foo()
439 bc *= bc2; // expected-error {{invalid operands}} in foo()
442 uc *= bc2; // expected-error {{cannot convert}} in foo()
465 bc = bc / bc2; // expected-error {{invalid operands}} in foo()
468 sc = sc / bc2; // expected-error {{cannot convert}} in foo()
473 bc /= bc2; // expected-error {{invalid operands}} in foo()
476 uc /= bc2; // expected-error {{cannot convert}} in foo()
499 bc = bc % bc2; // expected-error {{invalid operands}} in foo()
502 sc = sc % bc2; // expected-error {{cannot convert}} in foo()
507 bc %= bc2; // expected-error {{invalid operands}} in foo()
510 uc %= bc2; // expected-error {{cannot convert}} in foo()
534 sc = sc & bc2; in foo()
541 uc = uc & bc2; in foo()
543 bc = bc & bc2; in foo()
545 bc = uc & bc2; // expected-error {{incompatible type}} in foo()
547 bc = sc & bc2; // expected-error {{incompatible type}} in foo()
557 sc &= bc2; in foo()
561 uc &= bc2; in foo()
563 bc &= bc2; in foo()
572 us &= bc2; // expected-error {{cannot convert}} in foo()
573 ui &= bc2; // expected-error {{cannot convert}} in foo()
574 ul &= bc2; // expected-error {{cannot convert}} in foo()
575 fd &= bc2; // expected-error {{invalid operands}} in foo()
595 sc = sc | bc2; in foo()
601 bc = bc | bc2; in foo()
602 bc = uc | bc2; // expected-error {{incompatible type}} in foo()
629 sc = sc ^ bc2; in foo()
635 bc = bc ^ bc2; in foo()
636 bc = uc ^ bc2; // expected-error {{incompatible type}} in foo()
664 sc = sc << bc2; // expected-error {{invalid operands}} in foo()
671 uc = uc << bc2; // expected-error {{invalid operands}} in foo()
673 bc = bc << bc2; // expected-error {{invalid operands}} in foo()
675 bc = uc << bc2; // expected-error {{invalid operands}} in foo()
677 bc = sc << bc2; // expected-error {{invalid operands}} in foo()
720 sc <<= bc2; // expected-error {{invalid operands}} in foo()
725 uc <<= bc2; // expected-error {{invalid operands}} in foo()
728 bc <<= bc2; // expected-error {{invalid operands}} in foo()
764 sc = sc >> bc2; // expected-error {{invalid operands}} in foo()
771 uc = uc >> bc2; // expected-error {{invalid operands}} in foo()
773 bc = bc >> bc2; // expected-error {{invalid operands}} in foo()
775 bc = uc >> bc2; // expected-error {{invalid operands}} in foo()
777 bc = sc >> bc2; // expected-error {{invalid operands}} in foo()
820 sc >>= bc2; // expected-error {{invalid operands}} in foo()
825 uc >>= bc2; // expected-error {{invalid operands}} in foo()
828 bc >>= bc2; // expected-error {{invalid operands}} in foo()
863 (void)(bc == bc2); in foo()
896 (void)(bc != bc2); in foo()
920 (void)(bc <= bc2); in foo()
944 (void)(bc >= bc2); in foo()
968 (void)(bc < bc2); in foo()
992 (void)(bc > bc2); in foo()