Lines Matching refs:dthb_next
7884 next = bucket->dthb_next; in dtrace_hash_resize()
7885 bucket->dthb_next = new_tab[ndx]; in dtrace_hash_resize()
7904 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_add()
7916 bucket->dthb_next = hash->dth_tab[ndx]; in dtrace_hash_add()
7942 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_lookup_string()
7963 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_collisions()
7983 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_remove()
8002 hash->dth_tab[ndx] = bucket->dthb_next; in dtrace_hash_remove()
8004 while (b->dthb_next != bucket) in dtrace_hash_remove()
8005 b = b->dthb_next; in dtrace_hash_remove()
8006 b->dthb_next = bucket->dthb_next; in dtrace_hash_remove()