Lines Matching refs:nam
247 ht_remove(struct hashtab *ht, const char *nam) in ht_remove() argument
252 h = hash(nam); in ht_remove()
254 while (hp && hp->h_name == nam) { in ht_remove()
264 if (thp->h_name == nam) { in ht_remove()
278 ht_insrep(struct hashtab *ht, const char *nam, void *val, int replace) in ht_insrep() argument
283 h = hash(nam); in ht_insrep()
286 if (hp->h_name == nam) { in ht_insrep()
292 *hpp = hp = newhashent(nam, h); in ht_insrep()
300 ht_lookup(struct hashtab *ht, const char *nam) in ht_lookup() argument
305 h = hash(nam); in ht_lookup()
308 if (hp->h_name == nam) in ht_lookup()