Lines Matching refs:pos
157 * @param pos the &struct list_head to use as a loop counter.
160 #define list_for_each(pos, head) \
161 for (pos = (head)->next; pos != (head); pos = pos->next)
165 * @param pos the &struct list_head to use as a loop counter.
169 #define list_for_each_safe(pos, n, head) \
170 for (pos = (head)->next, n = pos->next; pos != (head); \
171 pos = n, n = pos->next)