Home | History | Annotate | Download | only in blkid

Lines Matching refs:pos

156  * @pos:	the &struct list_head to use as a loop counter.
159 #define list_for_each(pos, head) \
160 for (pos = (head)->next; pos != (head); pos = pos->next)
164 * pos after the body is done (in case it is freed)
165 * @pos: the &struct list_head to use as a loop counter.
169 #define list_for_each_safe(pos, pnext, head) \
170 for (pos = (head)->next, pnext = pos->next; pos != (head); \
171 pos = pnext, pnext = pos->next)