Home | History | Annotate | Download | only in utils

Lines Matching full:next

19  * - List entries contain references to the next, and the previous entry in the
22 * in its 'next' reference, and the "list head" references the "last" entry in
24 * - The list is empty if its 'next' and 'previous' references are addressing the
29 /* Next entry in the list */
30 ACList* next;
39 list->next = list->prev = list;
46 return list->next == list;
53 ACList* const next = list->next;
54 entry->next = next;
56 next->prev = entry;
57 list->next = entry;
64 entry->next = list;
66 prev->next = entry;
75 ACList* const next = entry->next;
77 prev->next = next;
78 next->prev = prev;
79 entry->next = entry->prev = entry;
89 entry = list->next;
90 list->next = entry->next;
91 entry->next->prev = list;
92 entry->next = entry->prev = entry;
106 entry->prev->next = list;
107 entry->next = entry->prev = entry;