Searched refs:dth_size (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Ddtrace_impl.h136 int dth_size; /* size of hash table */ member in struct:dtrace_hash
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/dtrace/
H A Ddtrace.c7266 hash->dth_size = 1;
7267 hash->dth_mask = hash->dth_size - 1;
7269 hash->dth_tab = kmem_zalloc(hash->dth_size *
7282 for (i = 0; i < hash->dth_size; i++)
7287 hash->dth_size * sizeof (dtrace_hashbucket_t *));
7295 int size = hash->dth_size, i, ndx;
7296 int new_size = hash->dth_size << 1;
7317 kmem_free(hash->dth_tab, hash->dth_size * sizeof (void *));
7319 hash->dth_size = new_size;
7336 if ((hash->dth_nbuckets >> 1) > hash->dth_size) {
[all...]

Completed in 198 milliseconds