Searched refs:dh_hash (Results 1 - 4 of 4) sorted by relevance

/freebsd-10-stable/sys/ufs/ufs/
H A Ddirhash.h83 ((dh)->dh_hash[(slot) >> DH_BLKOFFSHIFT][(slot) & DH_BLKOFFMASK])
89 doff_t **dh_hash; /* the hash array (2-level) */ member in struct:dirhash
90 int dh_narrays; /* number of entries in dh_hash */
H A Dufs_dirhash.c251 if (dh->dh_hash != NULL)
287 if (dh->dh_hash != NULL)
369 if (dh->dh_hash != NULL)
381 memreqd = sizeof(*dh) + narrays * sizeof(*dh->dh_hash) +
382 narrays * DH_NBLKOFF * sizeof(**dh->dh_hash) +
415 dh->dh_hash = malloc(narrays * sizeof(dh->dh_hash[0]),
417 if (dh->dh_hash == NULL)
424 if ((dh->dh_hash[i] = DIRHASH_BLKALLOC_WAITOK()) == NULL)
427 dh->dh_hash[
[all...]
/freebsd-10-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_ident.c684 for (idp = dhp->dh_hash[i]; idp != NULL; idp = next) {
691 for (idp = dhp->dh_hash[i]; idp != NULL; idp = next) {
709 for (idp = dhp->dh_hash[i]; idp != NULL; idp = idp->di_next) {
734 for (idp = dhp->dh_hash[h]; idp != NULL; idp = idp->di_next) {
782 idp->di_next = dhp->dh_hash[h];
784 dhp->dh_hash[h] = idp;
802 idp->di_next = dhp->dh_hash[h];
805 dhp->dh_hash[h] = idp;
817 dt_ident_t **pp = &dhp->dh_hash[h];
820 for (idp = dhp->dh_hash[
[all...]
H A Ddt_ident.h126 dt_ident_t *dh_hash[1]; /* array of hash table bucket pointers */ member in struct:dt_idhash

Completed in 113 milliseconds