Home | History | Annotate | Download | only in Sema

Lines Matching refs:ss2

9 vector signed short ss, ss2;
50 ss = ss2;
77 sc = ss2; // expected-error {{incompatible type}}
117 us = (vector unsigned short)ss2;
157 ++ss2;
197 --ss2;
237 ss = +ss2;
263 ss = -ss2;
289 ss = ~ss2;
338 ss = ss + ss2;
366 sc += ss2; // expected-error {{cannot convert}}
376 ss += ss2;
410 ss -= ss2;
445 ss *= ss2;
479 ss /= ss2;
513 ss %= ss2;
567 sc &= ss2; // expected-error {{cannot convert}}
577 ss &= ss2;
608 ss |= ss2;
642 ss ^= ss2;
696 ss = ss << ss2;
732 sc <<= ss2; // expected-error {{vector operands do not have the same number of elements}}
737 ss <<= ss2;
796 ss = ss >> ss2;
832 sc >>= ss2; // expected-error {{vector operands do not have the same number of elements}}
837 ss >>= ss2;
874 (void)(ss == ss2);
901 (void)(ss != ss2);
925 (void)(ss <= ss2);
949 (void)(ss >= ss2);
973 (void)(ss < ss2);
997 (void)(ss > ss2);