Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libpool/common/
H A Ddict.c91 uint64_t (*dh_hash)(const void *); member
282 hdl->dh_hash = hash ? hash : hash_addr; in dict_new()
296 i = (*hdl->dh_hash)(key)%hdl->dh_size; in dict_get()
315 i = (*hdl->dh_hash)(key)%hdl->dh_size; in dict_put()
345 i = (*hdl->dh_hash)(key)%hdl->dh_size; in dict_remove()
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_ident.c676 for (idp = dhp->dh_hash[i]; idp != NULL; idp = next) { in dt_idhash_destroy()
683 for (idp = dhp->dh_hash[i]; idp != NULL; idp = next) { in dt_idhash_destroy()
701 for (idp = dhp->dh_hash[i]; idp != NULL; idp = idp->di_next) { in dt_idhash_update()
726 for (idp = dhp->dh_hash[h]; idp != NULL; idp = idp->di_next) { in dt_idhash_lookup()
774 idp->di_next = dhp->dh_hash[h]; in dt_idhash_insert()
776 dhp->dh_hash[h] = idp; in dt_idhash_insert()
794 idp->di_next = dhp->dh_hash[h]; in dt_idhash_xinsert()
797 dhp->dh_hash[h] = idp; in dt_idhash_xinsert()
809 dt_ident_t **pp = &dhp->dh_hash[h]; in dt_idhash_delete()
812 for (idp = dhp->dh_hash[h]; idp != NULL; idp = idp->di_next) { in dt_idhash_delete()
[all …]
H A Ddt_ident.h124 dt_ident_t *dh_hash[1]; /* array of hash table bucket pointers */ member