Lines Matching refs:ui2
13 volatile vector unsigned int ui, ui2; variable
47 ui = ui2; in test_assign()
84 ui = +ui2; in test_pos()
142 ++ui2; in test_preinc()
179 ui2++; in test_postinc()
216 --ui2; in test_predec()
253 ui2--; in test_postdec()
336 ui = ui + ui2; in test_add()
344 ui = bi + ui2; in test_add()
426 ui += ui2; in test_add_assign()
524 ui = ui - ui2; in test_sub()
532 ui = bi - ui2; in test_sub()
614 ui -= ui2; in test_sub_assign()
672 ui = ui * ui2; in test_mul()
718 ui *= ui2; in test_mul_assign()
764 ui = ui / ui2; in test_div()
810 ui /= ui2; in test_div_assign()
856 ui = ui % ui2; in test_rem()
897 ui %= ui2; in test_rem_assign()
938 ui = ~ui2; in test_not()
1031 ui = ui & ui2; in test_and()
1039 ui = bi & ui2; in test_and()
1132 ui &= ui2; in test_and_assign()
1241 ui = ui | ui2; in test_or()
1249 ui = bi | ui2; in test_or()
1342 ui |= ui2; in test_or_assign()
1451 ui = ui ^ ui2; in test_xor()
1459 ui = bi ^ ui2; in test_xor()
1552 ui ^= ui2; in test_xor_assign()
1669 si = si << ui2; in test_sl()
1686 ui = ui << ui2; in test_sl()
1820 si <<= ui2; in test_sl_assign()
1837 ui <<= ui2; in test_sl_assign()
1971 si = si >> ui2; in test_sr()
1988 ui = ui >> ui2; in test_sr()
2122 si >>= ui2; in test_sr_assign()
2139 ui >>= ui2; in test_sr_assign()
2284 bi = ui == ui2; in test_cmpeq()
2294 bi = bi == ui2; in test_cmpeq()
2439 bi = ui != ui2; in test_cmpne()
2449 bi = bi != ui2; in test_cmpne()
2544 bi = ui >= ui2; in test_cmpge()
2619 bi = ui > ui2; in test_cmpgt()
2694 bi = ui <= ui2; in test_cmple()
2769 bi = ui < ui2; in test_cmplt()