Lines Matching refs:head
180 static void freelist(struct match *head)
183 for (match=head->next; match; match=next) {
229 struct match head = { .next = NULL }, *tail = &head;
257 freelist(&head);
261 for (cnt=0, tail=head.next; tail; tail=tail->next, cnt++);
264 tail = &head;
275 freelist(&head);
283 freelist(&head);
289 for (i=0, tail=head.next; i<cnt; tail=tail->next, i++)