Lines Matching refs:next
59 Alloc * next;
77 (new->next = head->next)->prev = new;
78 (new->prev = head)->next = new;
119 (new->prev = copy.prev)->next = (new->next = copy.next)->prev = new;
132 (old->next->prev = old->prev)->next = old->next;
133 old->next = old->prev = 0; /* so we can puke on multiple free's */
141 Alloc * next;
143 for (ptr = head->next; ptr != head; ptr = next)
145 next = ptr->next;
148 head->next = head->prev = head;