Lines Matching defs:next
25 struct double_list *next, *prev;
79 if (dlist->next == dlist) *pdlist = 0;
81 dlist->next->prev = dlist->prev;
82 dlist->prev->next = *pdlist = dlist->next;
91 new->next = *list;
93 (*list)->prev->next = new;
95 } else *list = new->next = new->prev = new;
115 struct symbol *next;
200 *from = (*from)->next;
220 if (*from == (dd = dd->next)) break;
252 new->next = sym;
327 for (try=sym; try; try=try->next) {
350 for (catch = sym; catch; catch = catch->next) {
514 dd = dd->next;
519 sym = sym->next;