Lines Matching refs:pos
119 * @pos: the &struct list_head to use as a loop counter.
127 #define __list_for_each(pos, head) \
128 for (pos = (head)->next; pos != (head); pos = pos->next)
132 * @pos: the &struct list_head to use as a loop counter.
136 #define list_for_each_safe(pos, n, head) \
137 for (pos = (head)->next, n = pos->next; pos != (head); \
138 pos = n, n = pos->next)