Lines Matching refs:next
22 st_table_entry *next; member
211 register st_table_entry *ptr, *next; local
217 next = ptr->next;
219 ptr = next;
240 while (PTR_NOT_EQUAL(table, ptr->next, hash_val, key)) {\
241 ptr = ptr->next;\
243 ptr = ptr->next;\
281 entry->next = table->bins[bin_pos];\
325 register st_table_entry *ptr, *next, **new_bins; local
338 next = ptr->next;
340 ptr->next = new_bins[hash_val];
342 ptr = next;
383 entry->next = new_table->bins[i];
385 ptr = ptr->next;
410 table->bins[hash_val] = ptr->next;
418 for(; ptr->next != 0; ptr = ptr->next) {
419 if (EQUAL(table, ptr->next->key, *key)) {
420 tmp = ptr->next;
421 ptr->next = ptr->next->next;
451 for(; ptr != 0; ptr = ptr->next) {
506 for (tmp = table->bins[i]; tmp; tmp=tmp->next) {
517 ptr = ptr->next;
524 table->bins[i] = ptr->next;
527 last->next = ptr->next;
529 ptr = ptr->next;