Lines Matching refs:next
38 st_table_entry *next; member
219 register st_table_entry *ptr, *next; local
225 next = ptr->next;
227 ptr = next;
248 while (PTR_NOT_EQUAL(table, ptr->next, hash_val, key)) {\
249 ptr = ptr->next;\
251 ptr = ptr->next;\
289 entry->next = table->bins[bin_pos];\
333 register st_table_entry *ptr, *next, **new_bins; local
343 next = ptr->next;
345 ptr->next = new_bins[hash_val];
347 ptr = next;
388 entry->next = new_table->bins[i];
390 ptr = ptr->next;
415 table->bins[hash_val] = ptr->next;
423 for(; ptr->next != 0; ptr = ptr->next) {
424 if (EQUAL(table, ptr->next->key, *key)) {
425 tmp = ptr->next;
426 ptr->next = ptr->next->next;
456 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;