Home
last modified time | relevance | path

Searched refs:h_chains (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/ctf/
H A Dctf_hash.c57 hp->h_chains = ctf_alloc(sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_create()
59 if (hp->h_buckets == NULL || hp->h_chains == NULL) { in ctf_hash_create()
65 bzero(hp->h_chains, sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_create()
100 ctf_helem_t *hep = &hp->h_chains[hp->h_free]; in ctf_hash_insert()
156 hep = &hp->h_chains[i]; in ctf_hash_lookup()
175 if (hp->h_chains != NULL) { in ctf_hash_destroy()
176 ctf_free(hp->h_chains, sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_destroy()
177 hp->h_chains = NULL; in ctf_hash_destroy()
193 hep = &hp->h_chains[i]; in ctf_hash_dump()
H A Dctf_impl.h78 ctf_helem_t *h_chains; /* hash chains buffer */ member