HomeSort by: relevance | last modified time | path
    Searched refs:stopmask (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/dev/tprof/
tprof_x86_amd.c 174 tprof_amd_stop(tprof_countermask_t stopmask)
178 while ((bit = ffs(stopmask)) != 0) {
180 CLR(stopmask, __BIT(bit));
tprof_x86_intel.c 165 tprof_intel_stop(tprof_countermask_t stopmask)
169 while ((bit = ffs(stopmask)) != 0) {
171 CLR(stopmask, __BIT(bit));
tprof_armv7.c 211 armv7_pmu_stop(tprof_countermask_t stopmask)
214 armreg_pmcntenclr_write(stopmask & PMCNTEN_P);
tprof_armv8.c 183 armv8_pmu_stop(tprof_countermask_t stopmask)
186 reg_pmcntenclr_el0_write(stopmask & PMCNTEN_P);
tprof.c 325 tprof_countermask_t stopmask = (uintptr_t)arg2; local in function:tprof_stop_cpu
327 tb->tb_ops->tbo_stop(stopmask);
416 tprof_stop(tprof_countermask_t stopmask)
426 stopmask &= tb->tb_softc.sc_ctr_running_mask;
427 if (stopmask == 0) {
432 xc = xc_broadcast(0, tprof_stop_cpu, tb, (void *)(uintptr_t)stopmask);
435 tb->tb_softc.sc_ctr_running_mask &= ~stopmask;

Completed in 21 milliseconds