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

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Ddtrace_impl.h136 int dth_size; /* size of hash table */ member in struct:dtrace_hash
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/dtrace/
H A Ddtrace.c6039 hash->dth_size = 1;
6040 hash->dth_mask = hash->dth_size - 1;
6042 hash->dth_tab = kmem_zalloc(hash->dth_size *
6055 for (i = 0; i < hash->dth_size; i++)
6060 hash->dth_size * sizeof (dtrace_hashbucket_t *));
6068 int size = hash->dth_size, i, ndx;
6069 int new_size = hash->dth_size << 1;
6090 kmem_free(hash->dth_tab, hash->dth_size * sizeof (void *));
6092 hash->dth_size = new_size;
6109 if ((hash->dth_nbuckets >> 1) > hash->dth_size) {
[all...]

Completed in 47 milliseconds