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

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_hash.c49 hp->h_nbuckets = 1;
53 hp->h_nbuckets = 211; /* use a prime number of hash buckets */
57 hp->h_buckets = ctf_alloc(sizeof (ushort_t) * hp->h_nbuckets);
65 bzero(hp->h_buckets, sizeof (ushort_t) * hp->h_nbuckets);
121 h = ctf_hash_compute(str, strlen(str)) % hp->h_nbuckets;
154 ulong_t h = ctf_hash_compute(key, len) % hp->h_nbuckets;
171 if (hp->h_buckets != NULL && hp->h_nbuckets != 1) {
172 ctf_free(hp->h_buckets, sizeof (ushort_t) * hp->h_nbuckets);
H A Dctf_impl.h85 ushort_t h_nbuckets; /* number of elements in bucket array */ member in struct:ctf_hash

Completed in 155 milliseconds