Lines Matching refs:next
22 st_table_entry *next; member
203 register st_table_entry *ptr, *next; local
209 next = ptr->next;
211 ptr = next;
232 while (PTR_NOT_EQUAL(table, ptr->next, hash_val, key)) {\
233 ptr = ptr->next;\
235 ptr = ptr->next;\
273 entry->next = table->bins[bin_pos];\
317 register st_table_entry *ptr, *next, **new_bins; local
327 next = ptr->next;
329 ptr->next = new_bins[hash_val];
331 ptr = next;
372 entry->next = new_table->bins[i];
374 ptr = ptr->next;
399 table->bins[hash_val] = ptr->next;
407 for(; ptr->next != 0; ptr = ptr->next) {
408 if (EQUAL(table, ptr->next->key, *key)) {
409 tmp = ptr->next;
410 ptr->next = ptr->next->next;
440 for(; ptr != 0; ptr = ptr->next) {
495 for (tmp = table->bins[i]; tmp; tmp=tmp->next) {
506 ptr = ptr->next;
513 table->bins[i] = ptr->next;
516 last->next = ptr->next;
518 ptr = ptr->next;