Lines Matching refs:sc2
5 vector signed char sc, sc2; variable
89 sc = sc2; in foo()
108 uc = sc2; // expected-error {{incompatible type}} in foo()
110 bc = sc2; // expected-error {{incompatible type}} in foo()
125 ss = sc2; // expected-error {{incompatible type}} in foo()
126 si = sc2; // expected-error {{incompatible type}} in foo()
127 sl = sc2; // expected-error {{incompatible type}} in foo()
128 fd = sc2; // expected-error {{incompatible type}} in foo()
156 uc = (vector unsigned char)sc2; in foo()
189 ul = (vector unsigned long long)sc2; in foo()
190 fd = (vector double)sc2; in foo()
196 ++sc2; in foo()
236 --sc2; in foo()
276 sc = +sc2; in foo()
302 sc = -sc2; in foo()
328 sc = ~sc2; in foo()
354 sc = sc + sc2; in foo()
356 sc = uc + sc2; // expected-error {{cannot convert}} in foo()
358 sc = bc + sc2; in foo()
362 uc = uc + sc2; // expected-error {{cannot convert}} in foo()
369 bc = bc + sc2; // expected-error {{incompatible type}} in foo()
397 sc += sc2; in foo()
402 uc += sc2; // expected-error {{cannot convert}} in foo()
406 bc += sc2; // expected-error {{cannot convert}} in foo()
437 sc = sc - sc2; in foo()
441 sc = uc - sc2; // expected-error {{cannot convert}} in foo()
445 sc -= sc2; in foo()
451 bc -= sc2; // expected-error {{cannot convert}} in foo()
472 sc = sc * sc2; in foo()
476 sc = uc * sc2; // expected-error {{cannot convert}} in foo()
480 sc *= sc2; in foo()
486 bc *= sc2; // expected-error {{cannot convert}} in foo()
506 sc = sc / sc2; in foo()
510 sc = uc / sc2; // expected-error {{cannot convert}} in foo()
514 sc /= sc2; in foo()
520 bc /= sc2; // expected-error {{cannot convert}} in foo()
540 sc = sc % sc2; in foo()
544 sc = uc % sc2; // expected-error {{cannot convert}} in foo()
548 sc %= sc2; in foo()
554 bc %= sc2; // expected-error {{cannot convert}} in foo()
574 sc = sc & sc2; in foo()
576 sc = uc & sc2; // expected-error {{cannot convert}} in foo()
578 sc = bc & sc2; in foo()
582 uc = uc & sc2; // expected-error {{cannot convert}} in foo()
589 bc = bc & sc2; // expected-error {{incompatible type}} in foo()
598 sc &= sc2; in foo()
603 uc &= sc2; // expected-error {{cannot convert}} in foo()
607 bc &= sc2; // expected-error {{cannot convert}} in foo()
636 sc = sc | sc2; in foo()
646 bc = bc | sc2; // expected-error {{incompatible type}} in foo()
670 sc = sc ^ sc2; in foo()
680 bc = bc ^ sc2; // expected-error {{incompatible type}} in foo()
704 sc = sc << sc2; in foo()
706 sc = uc << sc2; // expected-error {{incompatible type}} in foo()
708 sc = bc << sc2; // expected-error {{invalid operands}} in foo()
712 uc = uc << sc2; in foo()
719 bc = bc << sc2; // expected-error {{invalid operands}} in foo()
761 sc <<= sc2; in foo()
767 uc <<= sc2; in foo()
772 bc <<= sc2; // expected-error {{invalid operands}} in foo()
804 sc = sc >> sc2; in foo()
806 sc = uc >> sc2; // expected-error {{incompatible type}} in foo()
808 sc = bc >> sc2; // expected-error {{invalid operands}} in foo()
812 uc = uc >> sc2; in foo()
819 bc = bc >> sc2; // expected-error {{invalid operands}} in foo()
861 sc >>= sc2; in foo()
867 uc >>= sc2; in foo()
872 bc >>= sc2; // expected-error {{invalid operands}} in foo()
904 (void)(sc == sc2); in foo()
937 (void)(sc != sc2); in foo()
961 (void)(sc <= sc2); in foo()
985 (void)(sc >= sc2); in foo()
1009 (void)(sc < sc2); in foo()
1033 (void)(sc > sc2); in foo()