Lines Matching defs:ss2
9 vector signed short ss, ss2;
114 ss = ss2;
145 sc = ss2; // expected-error {{incompatible type}}
191 us = (vector unsigned short)ss2;
239 ++ss2;
287 --ss2;
335 ss = +ss2;
365 ss = -ss2;
395 ss = ~ss2;
448 ss = ss + ss2;
480 sc += ss2; // expected-error {{cannot convert}}
491 ss += ss2;
529 ss -= ss2;
568 ss *= ss2;
607 ss /= ss2;
645 ss %= ss2;
703 sc &= ss2; // expected-error {{cannot convert}}
713 ss &= ss2;
748 ss |= ss2;
786 ss ^= ss2;
844 ss = ss << ss2;
886 sc <<= ss2; // expected-error {{vector operands do not have the same number of elements}}
891 ss <<= ss2;
956 ss = ss >> ss2;
998 sc >>= ss2; // expected-error {{vector operands do not have the same number of elements}}
1003 ss >>= ss2;
1046 (void)(ss == ss2);
1077 (void)(ss != ss2);
1105 (void)(ss <= ss2);
1133 (void)(ss >= ss2);
1161 (void)(ss < ss2);
1189 (void)(ss > ss2);