Lines Matching refs:uc2
6 vector unsigned char uc, uc2; variable
47 uc = uc2; in foo()
63 sc = uc2; // expected-error {{incompatible type}} in foo()
68 bc = uc2; // expected-error {{incompatible type}} in foo()
92 us = uc2; // expected-error {{incompatible type}} in foo()
93 ui = uc2; // expected-error {{incompatible type}} in foo()
94 ul = uc2; // expected-error {{incompatible type}} in foo()
95 fd = uc2; // expected-error {{incompatible type}} in foo()
112 bc = (vector bool char)uc2; in foo()
145 bl = (vector bool long long)uc2; in foo()
154 ++uc2; in foo()
194 --uc2; in foo()
234 uc = +uc2; in foo()
260 uc = -uc2; in foo()
286 uc = ~uc2; in foo()
312 sc = sc + uc2; // expected-error {{cannot convert}} in foo()
317 uc = uc + uc2; in foo()
318 uc = sc + uc2; // expected-error {{cannot convert}} in foo()
320 uc = bc + uc2; in foo()
324 bc = bc + uc2; // expected-error {{incompatible type}} in foo()
355 sc += uc2; // expected-error {{cannot convert}} in foo()
358 uc += uc2; in foo()
364 bc += uc2; // expected-error {{cannot convert}} in foo()
395 uc = uc - uc2; in foo()
400 uc = bc - uc2; in foo()
403 uc -= uc2; in foo()
406 sc -= uc2; // expected-error {{cannot convert}} in foo()
430 uc = uc * uc2; in foo()
435 uc = bc * uc2; // expected-error {{cannot convert}} in foo()
438 uc *= uc2; in foo()
441 sc *= uc2; // expected-error {{cannot convert}} in foo()
464 uc = uc / uc2; in foo()
469 uc = bc / uc2; // expected-error {{cannot convert}} in foo()
472 uc /= uc2; in foo()
475 sc /= uc2; // expected-error {{cannot convert}} in foo()
498 uc = uc % uc2; in foo()
503 uc = bc % uc2; // expected-error {{cannot convert}} in foo()
506 uc %= uc2; in foo()
509 sc %= uc2; // expected-error {{cannot convert}} in foo()
532 sc = sc & uc2; // expected-error {{cannot convert}} in foo()
537 uc = uc & uc2; in foo()
538 uc = sc & uc2; // expected-error {{cannot convert}} in foo()
540 uc = bc & uc2; in foo()
544 bc = bc & uc2; // expected-error {{incompatible type}} in foo()
556 sc &= uc2; // expected-error {{cannot convert}} in foo()
559 uc &= uc2; in foo()
565 bc &= uc2; // expected-error {{cannot convert}} in foo()
594 sc = sc | uc2; // expected-error {{cannot convert}} in foo()
597 uc = uc | uc2; in foo()
598 uc = sc | uc2; // expected-error {{cannot convert}} in foo()
599 uc = bc | uc2; in foo()
628 sc = sc ^ uc2; // expected-error {{cannot convert}} in foo()
631 uc = uc ^ uc2; in foo()
632 uc = sc ^ uc2; // expected-error {{cannot convert}} in foo()
633 uc = bc ^ uc2; in foo()
662 sc = sc << uc2; in foo()
667 uc = uc << uc2; in foo()
668 uc = sc << uc2; // expected-error {{assigning to}} in foo()
670 uc = bc << uc2; // expected-error {{invalid operands}} in foo()
674 bc = bc << uc2; // expected-error {{invalid operands}} in foo()
719 sc <<= uc2; in foo()
723 uc <<= uc2; in foo()
730 bc <<= uc2; // expected-error {{invalid operands}} in foo()
762 sc = sc >> uc2; in foo()
767 uc = uc >> uc2; in foo()
768 uc = sc >> uc2; // expected-error {{assigning to}} in foo()
770 uc = bc >> uc2; // expected-error {{invalid operands}} in foo()
774 bc = bc >> uc2; // expected-error {{invalid operands}} in foo()
819 sc >>= uc2; in foo()
823 uc >>= uc2; in foo()
830 bc >>= uc2; // expected-error {{invalid operands}} in foo()
862 (void)(uc == uc2); in foo()
895 (void)(uc != uc2); in foo()
919 (void)(uc <= uc2); in foo()
943 (void)(uc >= uc2); in foo()
967 (void)(uc < uc2); in foo()
991 (void)(uc > uc2); in foo()