Lines Matching refs:I
171 #define label_for_each(I, L, P) \ argument
172 for ((I).i = 0; ((P) = (L)->vec[(I).i]); ++((I).i))
175 #define label_for_each_cont(I, L, P) \ argument
176 for (++((I).i); ((P) = (L)->vec[(I).i]); ++((I).i))
181 #define label_for_each_confined(I, L, P) \ argument
182 for ((I).i = aa_label_next_confined((L), 0); \
183 ((P) = (L)->vec[(I).i]); \
184 (I).i = aa_label_next_confined((L), (I).i + 1))
186 #define label_for_each_in_merge(I, A, B, P) \ argument
187 for ((I).i = (I).j = 0; \
188 ((P) = aa_label_next_in_merge(&(I), (A), (B))); \
191 #define label_for_each_not_in_set(I, SET, SUB, P) \ argument
192 for ((I).i = (I).j = 0; \
193 ((P) = __aa_label_next_not_in_set(&(I), (SET), (SUB))); \
204 #define label_for_each_in_ns(I, NS, L, P) \ argument
205 for ((I).i = next_in_ns(0, (NS), (L)); \
206 ((P) = (L)->vec[(I).i]); \
207 (I).i = next_in_ns((I).i + 1, (NS), (L)))
273 struct aa_profile *__aa_label_next_not_in_set(struct label_it *I,
282 struct aa_profile *aa_label_next_in_merge(struct label_it *I,