Lines Matching defs:hep
98 ctf_helem_t *hep = &hp->h_chains[hp->h_free];
116 hep->h_name = name;
117 hep->h_type = type;
119 hep->h_next = hp->h_buckets[h];
134 ctf_helem_t *hep = ctf_hash_lookup(hp, fp, str, strlen(str));
136 if (hep == NULL)
139 hep->h_type = type;
146 ctf_helem_t *hep;
153 for (i = hp->h_buckets[h]; i != 0; i = hep->h_next) {
154 hep = &hp->h_chains[i];
155 ctsp = &fp->ctf_str[CTF_NAME_STID(hep->h_name)];
156 str = ctsp->cts_strs + CTF_NAME_OFFSET(hep->h_name);
159 return (hep);