Lines Matching defs:htbl
59 struct htbl { struct
60 void **htbl_ptrs; argument
61 uint_t (*htbl_hash)(const void *, size_t); argument
62 size_t htbl_link_off; /* offset of the linkage structure */ argument
63 size_t htbl_key_off; /* offset of the key value (rehash) */ argument
64 size_t htbl_size; /* size of the hash */ argument
65 uint_t htbl_size_index; argument
66 uint_t htbl_ifcount; /* count of entries */ argument
67 boolean_t htbl_grow; /* growth allowed */ argument
71 #define HFIRST(htbl, arg) \ argument
75 #define HADD(htbl, strp) \ argument
204 hash_link(struct htbl *htbl, uint_t hval, void *strp) in hash_link()
218 hash_unlink(struct htbl *htbl, void *strp) in hash_unlink()
265 htbl_grow(struct htbl *htbl) in htbl_grow()