Lines Matching refs:pos
142 #define plist_for_each(pos, head) \ argument
143 list_for_each_entry(pos, &(head)->node_list, node_list)
152 #define plist_for_each_continue(pos, head) \ argument
153 list_for_each_entry_continue(pos, &(head)->node_list, node_list)
163 #define plist_for_each_safe(pos, n, head) \ argument
164 list_for_each_entry_safe(pos, n, &(head)->node_list, node_list)
172 #define plist_for_each_entry(pos, head, mem) \ argument
173 list_for_each_entry(pos, &(head)->node_list, mem.node_list)
184 #define plist_for_each_entry_continue(pos, head, m) \ argument
185 list_for_each_entry_continue(pos, &(head)->node_list, m.node_list)
196 #define plist_for_each_entry_safe(pos, n, head, m) \ argument
197 list_for_each_entry_safe(pos, n, &(head)->node_list, m.node_list)
257 #define plist_next(pos) \ argument
258 list_next_entry(pos, node_list)
264 #define plist_prev(pos) \ argument
265 list_prev_entry(pos, node_list)