Lines Matching refs:strp
75 #define HADD(htbl, strp) \ argument
76 hash_link((htbl), (htbl)->htbl_hash((strp), (htbl)->htbl_key_off), \
77 (strp))
172 link_in(void **head, void *strp, size_t loffs) in link_in() argument
177 hlp = (struct hlinkage *)((char *)strp + loffs); in link_in()
184 *head = strp; in link_in()
189 link_out(void *strp, size_t loffs) in link_out() argument
194 hlp = (struct hlinkage *)((char *)strp + loffs); in link_out()
204 hash_link(struct htbl *htbl, uint_t hval, void *strp) in hash_link() argument
212 link_in(hep, strp, htbl->htbl_link_off); in hash_link()
218 hash_unlink(struct htbl *htbl, void *strp) in hash_unlink() argument
220 link_out(strp, htbl->htbl_link_off); in hash_unlink()
267 void *strp; in htbl_grow() local
302 strp = *old_ptrs++; in htbl_grow()
303 HADD(htbl, strp); in htbl_grow()