Searched refs:runmask (Results 1 - 5 of 5) sorted by relevance

/netbsd-current/sys/dev/tprof/
H A Dtprof_x86_amd.c162 tprof_amd_start(tprof_countermask_t runmask) argument
166 while ((bit = ffs(runmask)) != 0) {
168 CLR(runmask, __BIT(bit));
H A Dtprof_x86_intel.c153 tprof_intel_start(tprof_countermask_t runmask) argument
157 while ((bit = ffs(runmask)) != 0) {
159 CLR(runmask, __BIT(bit));
H A Dtprof.c316 tprof_countermask_t runmask = (uintptr_t)arg2; local
318 tb->tb_ops->tbo_start(runmask);
331 tprof_start(tprof_countermask_t runmask) argument
348 runmask &= ~tb->tb_softc.sc_ctr_running_mask;
349 runmask &= tb->tb_softc.sc_ctr_configured_mask;
350 if (runmask == 0) {
392 runmask &= tb->tb_softc.sc_ctr_configured_mask;
393 xc = xc_broadcast(0, tprof_start_cpu, tb, (void *)(uintptr_t)runmask);
396 tb->tb_softc.sc_ctr_running_mask |= runmask;
H A Dtprof_armv8.c170 armv8_pmu_start(tprof_countermask_t runmask) argument
173 reg_pmcntenset_el0_write(runmask & PMCNTEN_P);
H A Dtprof_armv7.c198 armv7_pmu_start(tprof_countermask_t runmask) argument
201 armreg_pmcntenset_write(runmask & PMCNTEN_P);

Completed in 191 milliseconds