Lines Matching full:prefix
5 .macro test_shift prefix, dst, src, v, imm
6 \prefix\()_set \dst, \src, \v, \imm
7 \prefix\()_ver \dst, \v, \imm
10 .macro test_shift_sd prefix, v, imm
11 test_shift \prefix, a3, a2, \v, \imm
12 test_shift \prefix, a2, a2, \v, \imm
15 .macro tests_imm_shift prefix, v
16 test_shift_sd \prefix, \v, 1
17 test_shift_sd \prefix, \v, 2
18 test_shift_sd \prefix, \v, 7
19 test_shift_sd \prefix, \v, 8
20 test_shift_sd \prefix, \v, 15
21 test_shift_sd \prefix, \v, 16
22 test_shift_sd \prefix, \v, 31
25 .macro tests_shift prefix, v
26 test_shift_sd \prefix, \v, 0
27 tests_imm_shift \prefix, \v
28 test_shift_sd \prefix, \v, 32