Lines Matching refs:dthb_next
7371 next = bucket->dthb_next; in dtrace_hash_resize()
7372 bucket->dthb_next = new_tab[ndx]; in dtrace_hash_resize()
7391 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_add()
7403 bucket->dthb_next = hash->dth_tab[ndx]; in dtrace_hash_add()
7429 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_lookup()
7444 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_collisions()
7464 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_remove()
7483 hash->dth_tab[ndx] = bucket->dthb_next; in dtrace_hash_remove()
7485 while (b->dthb_next != bucket) in dtrace_hash_remove()
7486 b = b->dthb_next; in dtrace_hash_remove()
7487 b->dthb_next = bucket->dthb_next; in dtrace_hash_remove()