Lines Matching refs:next
44 next_result = next = NULL;
60 next = rest;
133 next_np = np->next;
135 np->next = *hp;
140 /* Return the next entry in the bucket starting with this entry
147 for (np = this; np != NULL; np = np->next) {
155 return (np->next);
170 for (np = this; np != NULL; np = np->next) {
184 * index entries. These may be changed after the next call to 'lookup'
194 for (fst = this; fst != NULL; fst = fst->next) {
206 for (curr = fst->next; curr != NULL; curr = curr->next) {
238 for (dp = np = this; np != NULL; np = np->next) {
250 *head = np->next; // deleting head of bucket
252 dp->next = np->next; // deleting interior link
285 for (prev = curr = this; curr != NULL; curr = curr->next) {
307 save = prev->next;
308 prev->next = new db_index_entry(hval, i, recnum, prev->next);
309 if (prev->next == NULL) {
310 prev->next = save; // restore previous state
336 for (np = this; np != NULL; np = np->next) {