Lines Matching defs:ua

553 void test_int_vector_scalar(unsigned int ua, v2u v2ua) {
555 (void)(v2ua + ua);
556 (void)(ua + v2ua);
557 (void)(v2ua - ua);
558 (void)(ua - v2ua);
559 (void)(v2ua * ua);
560 (void)(ua * v2ua);
561 (void)(v2ua / ua);
562 (void)(ua / v2ua);
563 (void)(v2ua % ua);
564 (void)(ua % v2ua);
566 (void)(v2ua == ua);
567 (void)(ua == v2ua);
568 (void)(v2ua != ua);
569 (void)(ua != v2ua);
570 (void)(v2ua <= ua);
571 (void)(ua <= v2ua);
572 (void)(v2ua >= ua);
573 (void)(ua >= v2ua);
574 (void)(v2ua < ua);
575 (void)(ua < v2ua);
576 (void)(v2ua > ua);
577 (void)(ua > v2ua);
578 (void)(v2ua && ua);
579 (void)(ua && v2ua);
580 (void)(v2ua || ua);
581 (void)(ua || v2ua);
583 (void)(v2ua & ua);
584 (void)(ua & v2ua);
585 (void)(v2ua | ua);
586 (void)(ua | v2ua);
587 (void)(v2ua ^ ua);
588 (void)(ua ^ v2ua);
589 (void)(v2ua << ua);
590 (void)(ua << v2ua);
591 (void)(v2ua >> ua);
592 (void)(ua >> v2ua);
594 v2ua += ua;
595 v2ua -= ua;
596 v2ua *= ua;
597 v2ua /= ua;
598 v2ua %= ua;
599 v2ua &= ua;
600 v2ua |= ua;
601 v2ua ^= ua;
602 v2ua >>= ua;
603 v2ua <<= ua;
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'}}
617 void test_float_vector_scalar(float fa, unsigned int ua, v2f v2fa) {
654 (void)(v2fa << ua); // expected-error{{used type 'v2f' (vector of 2 'float' values) where integer is required}}
656 (void)(ua << v2fa); // expected-error{{used type 'v2f' (vector of 2 'float' values) where integer is required}}
658 (void)(v2fa >> ua); // expected-error{{used type 'v2f' (vector of 2 'float' values) where integer is required}}
660 (void)(ua >> v2fa); // expected-error{{used type 'v2f' (vector of 2 'float' values) where integer is required}}