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