Searched refs:dh_hash (Results 1 – 3 of 3) sorted by relevance
93 uint64_t (*dh_hash)(const void *); member284 hdl->dh_hash = hash ? hash : hash_addr; in dict_new()298 i = (*hdl->dh_hash)(key)%hdl->dh_size; in dict_get()317 i = (*hdl->dh_hash)(key)%hdl->dh_size; in dict_put()347 i = (*hdl->dh_hash)(key)%hdl->dh_size; in dict_remove()
674 for (idp = dhp->dh_hash[i]; idp != NULL; idp = next) { in dt_idhash_destroy()681 for (idp = dhp->dh_hash[i]; idp != NULL; idp = next) { in dt_idhash_destroy()699 for (idp = dhp->dh_hash[i]; idp != NULL; idp = idp->di_next) { in dt_idhash_update()724 for (idp = dhp->dh_hash[h]; idp != NULL; idp = idp->di_next) { in dt_idhash_lookup()772 idp->di_next = dhp->dh_hash[h]; in dt_idhash_insert()774 dhp->dh_hash[h] = idp; in dt_idhash_insert()792 idp->di_next = dhp->dh_hash[h]; in dt_idhash_xinsert()795 dhp->dh_hash[h] = idp; in dt_idhash_xinsert()807 dt_ident_t **pp = &dhp->dh_hash[h]; in dt_idhash_delete()810 for (idp = dhp->dh_hash[h]; idp != NULL; idp = idp->di_next) { in dt_idhash_delete()[all …]
126 dt_ident_t *dh_hash[1]; /* array of hash table bucket pointers */ member