Lines Matching refs:uc
6 vector unsigned char uc, uc2; variable
47 uc = uc2; in foo()
65 uc = sc2; // expected-error {{incompatible type}} in foo()
66 uc = bc2; // expected-error {{incompatible type}} in foo()
72 uc = sc_scalar; // expected-error {{incompatible type}} in foo()
73 uc = uc_scalar; // expected-error {{incompatible type}} in foo()
87 uc = us2; // expected-error {{incompatible type}} in foo()
88 uc = ui2; // expected-error {{incompatible type}} in foo()
89 uc = ul2; // expected-error {{incompatible type}} in foo()
90 uc = fd2; // expected-error {{incompatible type}} in foo()
113 uc = (vector unsigned char)sc2; in foo()
134 uc = (vector unsigned char)fd2; in foo()
172 uc++; in foo()
212 uc--; in foo()
234 uc = +uc2; in foo()
260 uc = -uc2; in foo()
286 uc = ~uc2; in foo()
313 sc = uc + sc2; // expected-error {{cannot convert}} in foo()
317 uc = uc + uc2; in foo()
318 uc = sc + uc2; // expected-error {{cannot convert}} in foo()
319 uc = uc + sc2; // expected-error {{cannot convert}} in foo()
320 uc = bc + uc2; in foo()
321 uc = uc + bc2; in foo()
325 bc = uc + bc2; // expected-error {{incompatible type}} in foo()
333 uc = uc + sc_scalar; // expected-error {{cannot convert}} in foo()
334 uc = uc + uc_scalar; // expected-error {{cannot convert}} in foo()
335 uc = sc_scalar + uc; // expected-error {{cannot convert}} in foo()
336 uc = uc_scalar + uc; // expected-error {{cannot convert}} in foo()
358 uc += uc2; in foo()
359 uc += sc2; // expected-error {{cannot convert}} in foo()
360 uc += bc2; in foo()
373 uc += sc_scalar; // expected-error {{cannot convert}} in foo()
374 uc += uc_scalar; // expected-error {{cannot convert}} in foo()
395 uc = uc - uc2; in foo()
398 sc = uc - sc2; // expected-error {{cannot convert}} in foo()
400 uc = bc - uc2; in foo()
403 uc -= uc2; in foo()
407 uc -= bc2; in foo()
430 uc = uc * uc2; in foo()
433 sc = uc * sc2; // expected-error {{cannot convert}} in foo()
435 uc = bc * uc2; // expected-error {{cannot convert}} in foo()
438 uc *= uc2; in foo()
442 uc *= bc2; // expected-error {{cannot convert}} in foo()
464 uc = uc / uc2; in foo()
467 sc = uc / sc2; // expected-error {{cannot convert}} in foo()
469 uc = bc / uc2; // expected-error {{cannot convert}} in foo()
472 uc /= uc2; in foo()
476 uc /= bc2; // expected-error {{cannot convert}} in foo()
498 uc = uc % uc2; in foo()
501 sc = uc % sc2; // expected-error {{cannot convert}} in foo()
503 uc = bc % uc2; // expected-error {{cannot convert}} in foo()
506 uc %= uc2; in foo()
510 uc %= bc2; // expected-error {{cannot convert}} in foo()
533 sc = uc & sc2; // expected-error {{cannot convert}} in foo()
537 uc = uc & uc2; in foo()
538 uc = sc & uc2; // expected-error {{cannot convert}} in foo()
539 uc = uc & sc2; // expected-error {{cannot convert}} in foo()
540 uc = bc & uc2; in foo()
541 uc = uc & bc2; in foo()
545 bc = uc & bc2; // expected-error {{incompatible type}} in foo()
559 uc &= uc2; in foo()
560 uc &= sc2; // expected-error {{cannot convert}} in foo()
561 uc &= bc2; in foo()
597 uc = uc | uc2; in foo()
598 uc = sc | uc2; // expected-error {{cannot convert}} in foo()
599 uc = bc | uc2; in foo()
602 bc = uc | bc2; // expected-error {{incompatible type}} in foo()
631 uc = uc ^ uc2; in foo()
632 uc = sc ^ uc2; // expected-error {{cannot convert}} in foo()
633 uc = bc ^ uc2; in foo()
636 bc = uc ^ bc2; // expected-error {{incompatible type}} in foo()
663 sc = uc << sc2; // expected-error {{incompatible type}} in foo()
667 uc = uc << uc2; in foo()
668 uc = sc << uc2; // expected-error {{assigning to}} in foo()
669 uc = uc << sc2; in foo()
670 uc = bc << uc2; // expected-error {{invalid operands}} in foo()
671 uc = uc << bc2; // expected-error {{invalid operands}} in foo()
675 bc = uc << bc2; // expected-error {{invalid operands}} in foo()
691 uc = uc << sc_scalar; in foo()
692 uc = uc << uc_scalar; in foo()
693 uc = sc_scalar << uc; // expected-error {{first operand is not a vector}} in foo()
694 uc = uc_scalar << uc; // expected-error {{first operand is not a vector}} in foo()
723 uc <<= uc2; in foo()
724 uc <<= sc2; in foo()
725 uc <<= bc2; // expected-error {{invalid operands}} in foo()
726 uc <<= uc_scalar; in foo()
763 sc = uc >> sc2; // expected-error {{incompatible type}} in foo()
767 uc = uc >> uc2; in foo()
768 uc = sc >> uc2; // expected-error {{assigning to}} in foo()
769 uc = uc >> sc2; in foo()
770 uc = bc >> uc2; // expected-error {{invalid operands}} in foo()
771 uc = uc >> bc2; // expected-error {{invalid operands}} in foo()
775 bc = uc >> bc2; // expected-error {{invalid operands}} in foo()
791 uc = uc >> sc_scalar; in foo()
792 uc = uc >> uc_scalar; in foo()
793 uc = sc_scalar >> uc; // expected-error {{first operand is not a vector}} in foo()
794 uc = uc_scalar >> uc; // expected-error {{first operand is not a vector}} in foo()
823 uc >>= uc2; in foo()
824 uc >>= sc2; in foo()
825 uc >>= bc2; // expected-error {{invalid operands}} in foo()
826 uc >>= uc_scalar; in foo()
862 (void)(uc == uc2); in foo()
865 (void)(sc == uc); // expected-error {{cannot convert}} in foo()
868 (void)(uc == sc); // expected-error {{cannot convert}} in foo()
869 (void)(uc == bc); in foo()
872 (void)(bc == uc); in foo()
895 (void)(uc != uc2); in foo()
898 (void)(sc != uc); // expected-error {{cannot convert}} in foo()
919 (void)(uc <= uc2); in foo()
922 (void)(sc <= uc); // expected-error {{cannot convert}} in foo()
943 (void)(uc >= uc2); in foo()
946 (void)(sc >= uc); // expected-error {{cannot convert}} in foo()
967 (void)(uc < uc2); in foo()
970 (void)(sc < uc); // expected-error {{cannot convert}} in foo()
991 (void)(uc > uc2); in foo()
994 (void)(sc > uc); // expected-error {{cannot convert}} in foo()