Lines Matching refs:pos
189 * @pos: the &struct list_head to use as a loop counter.
192 #define list_for_each(pos, head) \
193 for (pos = (head)->next, prefetch(pos->next); pos != (head); \
194 pos = pos->next, prefetch(pos->next))
199 * @pos: the &struct list_head to use as a loop counter.
203 #define list_for_each_safe(pos, n, head) \
204 for (pos = (head)->next, n = pos->next; pos != (head); \
205 pos = n, n = pos->next)