Searched refs:h_chains (Results 1 – 2 of 2) sorted by relevance
59 hp->h_chains = ctf_alloc(sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_create()61 if (hp->h_buckets == NULL || hp->h_chains == NULL) { in ctf_hash_create()67 bzero(hp->h_chains, sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_create()102 ctf_helem_t *hep = &hp->h_chains[hp->h_free]; in ctf_hash_insert()158 hep = &hp->h_chains[i]; in ctf_hash_lookup()177 if (hp->h_chains != NULL) { in ctf_hash_destroy()178 ctf_free(hp->h_chains, sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_destroy()179 hp->h_chains = NULL; in ctf_hash_destroy()
74 ctf_helem_t *h_chains; /* hash chains buffer */ member