Lines Matching defs:hep
102 ctf_helem_t *hep = &hp->h_chains[hp->h_free];
120 hep->h_name = name;
121 hep->h_type = type;
123 hep->h_next = hp->h_buckets[h];
138 ctf_helem_t *hep = ctf_hash_lookup(hp, fp, str, strlen(str));
140 if (hep == NULL)
143 hep->h_type = type;
150 ctf_helem_t *hep;
157 for (i = hp->h_buckets[h]; i != 0; i = hep->h_next) {
158 hep = &hp->h_chains[i];
159 ctsp = &fp->ctf_str[CTF_NAME_STID(hep->h_name)];
160 str = ctsp->cts_strs + CTF_NAME_OFFSET(hep->h_name);
163 return (hep);