Home
last modified time | relevance | path

Searched refs:h_hashfn (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/tools/ctf/cvt/
H A Dhash.c47 int (*h_hashfn)(int, void *); member
99 hash->h_hashfn = hashfn ? hashfn : (int (*)())hash_def_hash; in hash_new()
108 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_add()
135 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_remove()
145 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_match()
169 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_find_iter()
/titanic_41/usr/src/cmd/fm/fminject/common/
H A Dinj_hash.c51 h->h_hashfn = hfn; in inj_hash_create()
95 size_t i = h->h_hashfn(key) % h->h_hashsz; in inj_hash_insert()
114 size_t i = h->h_hashfn(key) % h->h_hashsz; in inj_hash_lookup()
H A Dinj_hash.h45 ulong_t (*h_hashfn)(void *); member