Lines Matching refs:bs2
11 vector bool short bs, bs2; variable
52 bs = bs2; in foo()
115 ss = (vector signed short)bs2; in foo()
132 sc = (vector signed char)bs2; in foo()
159 ++bs2; // expected-error {{cannot increment}} in foo()
199 --bs2; // expected-error {{cannot decrement}} in foo()
239 bs = +bs2; // expected-error {{invalid argument type}} in foo()
265 bs = -bs2; // expected-error {{invalid argument type}} in foo()
291 bs = ~bs2; in foo()
340 bs = bs + bs2; // expected-error {{invalid operands}} in foo()
378 bs += bs2; // expected-error {{invalid operands}} in foo()
412 bs -= bs2; // expected-error {{invalid operands}} in foo()
447 bs *= bs2; // expected-error {{invalid operands}} in foo()
481 bs /= bs2; // expected-error {{invalid operands}} in foo()
515 bs %= bs2; // expected-error {{invalid operands}} in foo()
579 bs &= bs2; in foo()
610 bs |= bs2; in foo()
644 bs ^= bs2; in foo()
700 bs = bs << bs2; // expected-error {{invalid operands}} in foo()
741 bs <<= bs2; // expected-error {{invalid operands}} in foo()
800 bs = bs >> bs2; // expected-error {{invalid operands}} in foo()
841 bs >>= bs2; // expected-error {{invalid operands}} in foo()
876 (void)(bs == bs2); in foo()
903 (void)(bs != bs2); in foo()
927 (void)(bs <= bs2); in foo()
951 (void)(bs >= bs2); in foo()
975 (void)(bs < bs2); in foo()
999 (void)(bs > bs2); in foo()