Lines Matching refs:next
24 struct node *next;
51 nodes[i].next = nodes + (i + 1);
53 nodes[COUNT - 1].next = NULL;
57 tail->next = nodes;
69 new_tail = tail->next;
93 struct node *next = node->next;
94 if (next) {
95 next->prev = prev;
98 prev->next = next;
102 struct node *tail_next = tail->next;
104 node->next = tail_next;
105 tail->next = node;