Lines Matching refs:next
38 for (current = first; current->next; current = current->next)
41 current->next = second;
59 first->next = NULL;
63 ConstListPtr next = malloc(sizeof(ConstListRec));
64 if (!next) {
68 next->value = a[i];
69 next->next = NULL;
71 current->next = next;
72 current = next;
75 current->next = old;
89 ConstListPtr next = old->next;
91 old = next;