Lines Matching refs:dthb_next
7883 next = bucket->dthb_next; in dtrace_hash_resize()
7884 bucket->dthb_next = new_tab[ndx]; in dtrace_hash_resize()
7903 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_add()
7915 bucket->dthb_next = hash->dth_tab[ndx]; in dtrace_hash_add()
7941 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_lookup_string()
7962 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_collisions()
7982 for (; bucket != NULL; bucket = bucket->dthb_next) { in dtrace_hash_remove()
8001 hash->dth_tab[ndx] = bucket->dthb_next; in dtrace_hash_remove()
8003 while (b->dthb_next != bucket) in dtrace_hash_remove()
8004 b = b->dthb_next; in dtrace_hash_remove()
8005 b->dthb_next = bucket->dthb_next; in dtrace_hash_remove()