Home
last modified time | relevance | path

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

/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_module.c474 uint_t h = dt_strtab_hash(name, NULL) % dtp->dt_modbuckets; in dt_module_create()
529 uint_t h = dt_strtab_hash(name, NULL) % dtp->dt_modbuckets; in dt_module_lookup_by_name()
551 uint_t h = dt_strtab_hash(name, NULL) % dtp->dt_modbuckets; in dt_kmodule_lookup()
1014 uint_t h = dt_strtab_hash(dmp->dm_name, NULL) % dtp->dt_modbuckets; in dt_module_destroy()
1291 h = dt_strtab_hash(ms.name, NULL) % dtp->dt_modbuckets; in dt_module_update()
H A Ddt_open.c1201 dtp->dt_modbuckets = _dtrace_strbuckets; in dt_vopen()
1202 dtp->dt_mods = calloc(dtp->dt_modbuckets, sizeof (dt_module_t *)); in dt_vopen()
1204 dtp->dt_kmods = calloc(dtp->dt_modbuckets, sizeof (dt_module_t *)); in dt_vopen()
1683 for (h = 0; h < dtp->dt_modbuckets; h++) in dtrace_close()
H A Ddt_impl.h258 uint_t dt_modbuckets; /* number of module hash buckets */ member