Searched refs:_pos (Results 1 – 1 of 1) sorted by relevance
54 #define HLIST_FOREACH_SAFE(_pos, _next, list) \ argument55 …for ((_pos) = HLIST_FIRST(list); ((_pos) != FILLP_NULL_PTR) && ((_next) = (_pos)->next, FILLP_TRUE…56 (_pos) = (_next))58 #define HLIST_FOREACH_AT_SAFE(_pos, _next) \ argument59 for (; ((_pos) != FILLP_NULL_PTR) && ((_next) = (_pos)->next, FILLP_TRUE); (_pos) = (_next))