Lines Matching refs:hep
99 ctf_helem_t *hep = &hp->h_chains[hp->h_free]; in ctf_hash_insert() local
117 hep->h_name = name; in ctf_hash_insert()
118 hep->h_type = type; in ctf_hash_insert()
120 hep->h_next = hp->h_buckets[h]; in ctf_hash_insert()
135 ctf_helem_t *hep = ctf_hash_lookup(hp, fp, str, strlen(str)); in ctf_hash_define() local
137 if (hep == NULL) in ctf_hash_define()
140 hep->h_type = type; in ctf_hash_define()
147 ctf_helem_t *hep; in ctf_hash_lookup() local
154 for (i = hp->h_buckets[h]; i != 0; i = hep->h_next) { in ctf_hash_lookup()
155 hep = &hp->h_chains[i]; in ctf_hash_lookup()
156 ctsp = &fp->ctf_str[CTF_NAME_STID(hep->h_name)]; in ctf_hash_lookup()
157 str = ctsp->cts_strs + CTF_NAME_OFFSET(hep->h_name); in ctf_hash_lookup()
160 return (hep); in ctf_hash_lookup()