Lines Matching refs:next
22 st_table_entry *next; member
210 register st_table_entry *ptr, *next; local
216 next = ptr->next;
218 ptr = next;
239 while (PTR_NOT_EQUAL(table, ptr->next, hash_val, key)) {\
240 ptr = ptr->next;\
242 ptr = ptr->next;\
279 entry->next = table->bins[bin_pos];\
323 register st_table_entry *ptr, *next, **new_bins; local
336 next = ptr->next;
338 ptr->next = new_bins[hash_val];
340 ptr = next;
381 entry->next = new_table->bins[i];
383 ptr = ptr->next;
408 table->bins[hash_val] = ptr->next;
416 for(; ptr->next != 0; ptr = ptr->next) {
417 if (EQUAL(table, ptr->next->key, *key)) {
418 tmp = ptr->next;
419 ptr->next = ptr->next->next;
449 for(; ptr != 0; ptr = ptr->next) {
504 for (tmp = table->bins[i]; tmp; tmp=tmp->next) {
515 ptr = ptr->next;
522 table->bins[i] = ptr->next;
525 last->next = ptr->next;
527 ptr = ptr->next;