Lines Matching refs:bc
7 vector bool char bc, bc2; variable
48 bc = bc2; in foo()
67 bc = sc2; // expected-error {{incompatible type}} in foo()
68 bc = uc2; // expected-error {{incompatible type}} in foo()
74 bc = sc_scalar; // expected-error {{incompatible type}} in foo()
75 bc = uc_scalar; // expected-error {{incompatible type}} in foo()
97 bc = us2; // expected-error {{incompatible type}} in foo()
98 bc = ui2; // expected-error {{incompatible type}} in foo()
99 bc = ul2; // expected-error {{incompatible type}} in foo()
100 bc = fd2; // expected-error {{incompatible type}} in foo()
112 bc = (vector bool char)uc2; in foo()
133 bc = (vector bool char)us2; in foo()
173 bc++; // expected-error {{cannot increment}} in foo()
213 bc--; // 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()
315 sc = bc + sc2; in foo()
320 uc = bc + uc2; in foo()
323 bc = bc + bc2; // expected-error {{invalid operands}} in foo()
324 bc = bc + uc2; // expected-error {{incompatible type}} in foo()
325 bc = uc + bc2; // expected-error {{incompatible type}} in foo()
326 bc = bc + sc2; // expected-error {{incompatible type}} in foo()
327 bc = sc + bc2; // expected-error {{incompatible type}} in foo()
362 bc += bc2; // expected-error {{invalid operands}} in foo()
363 bc += sc2; // expected-error {{cannot convert}} in foo()
364 bc += uc2; // expected-error {{cannot convert}} in foo()
396 bc = bc - bc2; // expected-error {{invalid operands}} in foo()
400 uc = bc - uc2; in foo()
404 bc -= bc2; // expected-error {{invalid operands}} in foo()
408 bc -= sc2; // expected-error {{cannot convert}} in foo()
431 bc = bc * bc2; // expected-error {{invalid operands}} in foo()
435 uc = bc * uc2; // expected-error {{cannot convert}} in foo()
439 bc *= bc2; // expected-error {{invalid operands}} in foo()
443 bc *= sc2; // expected-error {{cannot convert}} in foo()
465 bc = bc / bc2; // expected-error {{invalid operands}} in foo()
469 uc = bc / uc2; // expected-error {{cannot convert}} in foo()
473 bc /= bc2; // expected-error {{invalid operands}} in foo()
477 bc /= sc2; // expected-error {{cannot convert}} in foo()
499 bc = bc % bc2; // expected-error {{invalid operands}} in foo()
503 uc = bc % uc2; // expected-error {{cannot convert}} in foo()
507 bc %= bc2; // expected-error {{invalid operands}} in foo()
511 bc %= sc2; // expected-error {{cannot convert}} in foo()
535 sc = bc & sc2; in foo()
540 uc = bc & uc2; in foo()
543 bc = bc & bc2; in foo()
544 bc = bc & uc2; // expected-error {{incompatible type}} in foo()
545 bc = uc & bc2; // expected-error {{incompatible type}} in foo()
546 bc = bc & sc2; // expected-error {{incompatible type}} in foo()
547 bc = sc & bc2; // expected-error {{incompatible type}} in foo()
563 bc &= bc2; in foo()
564 bc &= sc2; // expected-error {{cannot convert}} in foo()
565 bc &= uc2; // expected-error {{cannot convert}} in foo()
599 uc = bc | uc2; in foo()
601 bc = bc | bc2; in foo()
602 bc = uc | bc2; // expected-error {{incompatible type}} in foo()
603 bc = bc | sc2; // expected-error {{incompatible type}} in foo()
633 uc = bc ^ uc2; in foo()
635 bc = bc ^ bc2; in foo()
636 bc = uc ^ bc2; // expected-error {{incompatible type}} in foo()
637 bc = bc ^ sc2; // expected-error {{incompatible type}} in foo()
665 sc = bc << sc2; // expected-error {{invalid operands}} in foo()
670 uc = bc << uc2; // expected-error {{invalid operands}} in foo()
673 bc = bc << bc2; // expected-error {{invalid operands}} in foo()
674 bc = bc << uc2; // expected-error {{invalid operands}} in foo()
675 bc = uc << bc2; // expected-error {{invalid operands}} in foo()
676 bc = bc << sc2; // expected-error {{invalid operands}} in foo()
677 bc = sc << bc2; // expected-error {{invalid operands}} in foo()
728 bc <<= bc2; // expected-error {{invalid operands}} in foo()
729 bc <<= sc2; // expected-error {{invalid operands}} in foo()
730 bc <<= uc2; // expected-error {{invalid operands}} in foo()
765 sc = bc >> sc2; // expected-error {{invalid operands}} in foo()
770 uc = bc >> uc2; // expected-error {{invalid operands}} in foo()
773 bc = bc >> bc2; // expected-error {{invalid operands}} in foo()
774 bc = bc >> uc2; // expected-error {{invalid operands}} in foo()
775 bc = uc >> bc2; // expected-error {{invalid operands}} in foo()
776 bc = bc >> sc2; // expected-error {{invalid operands}} in foo()
777 bc = sc >> bc2; // expected-error {{invalid operands}} in foo()
828 bc >>= bc2; // expected-error {{invalid operands}} in foo()
829 bc >>= sc2; // expected-error {{invalid operands}} in foo()
830 bc >>= uc2; // expected-error {{invalid operands}} in foo()
863 (void)(bc == bc2); in foo()
866 (void)(sc == bc); in foo()
869 (void)(uc == bc); in foo()
871 (void)(bc == sc); in foo()
872 (void)(bc == uc); in foo()
896 (void)(bc != bc2); in foo()
899 (void)(sc != bc); in foo()
920 (void)(bc <= bc2); in foo()
923 (void)(sc <= bc); in foo()
944 (void)(bc >= bc2); in foo()
947 (void)(sc >= bc); in foo()
968 (void)(bc < bc2); in foo()
971 (void)(sc < bc); in foo()
992 (void)(bc > bc2); in foo()
995 (void)(sc > bc); in foo()