Lines Matching defs:v2u
550 typedef unsigned int v2u __attribute__((ext_vector_type(2)));
553 void test_int_vector_scalar(unsigned int ua, v2u v2ua) {
605 ua += v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
606 ua -= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
607 ua *= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
608 ua /= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
609 ua %= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
610 ua &= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
611 ua |= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
612 ua ^= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
613 ua >>= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
614 ua <<= v2ua; // expected-error{{assigning to 'unsigned int' from incompatible type 'v2u'}}
687 void test_enum_vector_scalar(Enum ea, v2u v2ua) {
761 // ea >>= v2ua; // not-expected-error{{assigning to 'enum Enum' from incompatible type 'v2u'}}
762 // ea <<= v2ua; // not-expected-error{{assigning to 'enum Enum' from incompatible type 'v2u'}}
768 void test_scoped_enum_vector(EnumClass ea, v2u v2ua) {