Searched refs:h_chains (Results 1 – 2 of 2) sorted by relevance
56 hp->h_chains = ctf_alloc(sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_create()58 if (hp->h_buckets == NULL || hp->h_chains == NULL) { in ctf_hash_create()64 bzero(hp->h_chains, sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_create()99 ctf_helem_t *hep = &hp->h_chains[hp->h_free]; in ctf_hash_insert()155 hep = &hp->h_chains[i]; in ctf_hash_lookup()174 if (hp->h_chains != NULL) { in ctf_hash_destroy()175 ctf_free(hp->h_chains, sizeof (ctf_helem_t) * hp->h_nelems); in ctf_hash_destroy()176 hp->h_chains = NULL; in ctf_hash_destroy()
74 ctf_helem_t *h_chains; /* hash chains buffer */ member