Lines Matching defs:next
16 struct match *next;
24 (*tail)->next = new;
25 new->next = NULL;
60 * our interpretation) non-special, so if next
182 struct match *match, *next;
183 for (match=head->next; match; match=next) {
184 next = match->next;
229 struct match head = { .next = NULL }, *tail = &head;
261 for (cnt=0, tail=head.next; tail; tail=tail->next, cnt++);
289 for (i=0, tail=head.next; i<cnt; tail=tail->next, i++)