Home
last modified time | relevance | path

Searched refs:pdi_buckets (Results 1 – 2 of 2) sorted by relevance

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_printf.h68 dt_pfconv_t **pdi_buckets; /* hash bucket array */ member
H A Ddt_printf.c726 (pdi->pdi_buckets = malloc(sizeof (dt_pfconv_t *) * n)) == NULL) { in dt_pfdict_create()
732 bzero(pdi->pdi_buckets, sizeof (dt_pfconv_t *) * n); in dt_pfdict_create()
747 pfc->pfc_next = pdi->pdi_buckets[h]; in dt_pfdict_create()
748 pdi->pdi_buckets[h] = pfc; in dt_pfdict_create()
804 for (pfc = pdi->pdi_buckets[i]; pfc != NULL; pfc = nfc) { in dt_pfdict_destroy()
810 free(pdi->pdi_buckets); in dt_pfdict_destroy()
822 for (pfc = pdi->pdi_buckets[h]; pfc != NULL; pfc = pfc->pfc_next) { in dt_pfdict_lookup()