Lines Matching refs:flags
24 # of the flags above. The wrapper filters out any functions whose
27 .macro test_filter, name, flags argument
28 .if (\flags & filter) == \flags
29 test_one \name, \flags
33 .macro test_all_dc, name, flags argument
34 test_filter \name, \flags
35 test_filter \name\()_dc, (\flags | DC)
38 .macro test_all_ic, name, flags argument
39 test_all_dc \name, \flags
40 test_all_dc \name\()_ic, (\flags | IC)
43 .macro test_all_du, name, flags argument
44 test_all_ic \name, \flags
45 test_all_ic \name\()_du, (\flags | DU)
48 .macro test_all_iu, name, flags argument
49 test_all_du \name, \flags
50 test_all_du \name\()_iu, (\flags | IU)
53 .macro test_all_lo, name, flags argument
54 test_all_iu \name, \flags
55 test_all_iu \name\()_lo, (\flags | LO)