Lines Matching refs:uc_scalar
27 unsigned char uc_scalar; variable
71 sc = uc_scalar; // expected-error {{incompatible type}} in foo()
73 uc = uc_scalar; // expected-error {{incompatible type}} in foo()
75 bc = uc_scalar; // expected-error {{incompatible type}} in foo()
330 sc = sc + uc_scalar; // expected-error {{cannot convert}} in foo()
332 sc = uc_scalar + sc; // expected-error {{cannot convert}} in foo()
334 uc = uc + uc_scalar; // expected-error {{cannot convert}} in foo()
336 uc = uc_scalar + uc; // expected-error {{cannot convert}} in foo()
372 sc += uc_scalar; // expected-error {{cannot convert}} in foo()
374 uc += uc_scalar; // expected-error {{cannot convert}} in foo()
682 sc = sc << uc_scalar; in foo()
690 sc = uc_scalar << sc; // expected-error {{first operand is not a vector}} in foo()
692 uc = uc << uc_scalar; in foo()
694 uc = uc_scalar << uc; // expected-error {{first operand is not a vector}} in foo()
726 uc <<= uc_scalar; in foo()
782 sc = sc >> uc_scalar; in foo()
790 sc = uc_scalar >> sc; // expected-error {{first operand is not a vector}} in foo()
792 uc = uc >> uc_scalar; in foo()
794 uc = uc_scalar >> uc; // expected-error {{first operand is not a vector}} in foo()
826 uc >>= uc_scalar; in foo()