Lines Matching defs:next
46 } while ((list = list->next) != head);
65 } while ((list = list->next) != head);
86 } while ((list = list->next) != head);
103 list = list->next;
147 } while ((list = list->next) != head);
181 } while ((list = list->next) != head);
202 struct ptr_list *next;
204 next = entry->next;
207 if (next == entry) {
213 prev->next = next;
214 next->prev = prev;
217 *listp = next;
218 head = next;
219 entry = next;
223 entry = next;
239 struct ptr_list *next = head->next;
243 newlist->next = next;
244 next->prev = newlist;
246 head->next = newlist;
270 newlist->next = newlist;
275 newlist->next = list;
277 last->next = newlist;
326 } while ((list = list->next) != head);
417 last->prev->next = first;
459 struct ptr_list *next;
469 prev->next = tail;
477 next = cur->next;
479 cur = next;
484 tail->next = head;
502 list->prev->next = NULL;
505 list = list->next;