Home
last modified time | relevance | path

Searched refs:DPCPU_SET (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/mips/nlm/
H A Dtick.c242 DPCPU_SET(cycles_per_tick, div); in clock_start()
244 DPCPU_SET(compare_ticks, next); in clock_start()
253 DPCPU_SET(cycles_per_tick, 0); in clock_stop()
276 DPCPU_SET(compare_ticks, compare_next); in clock_intr()
283 DPCPU_SET(counter_upper, DPCPU_GET(counter_upper) + 1); in clock_intr()
285 DPCPU_SET(counter_lower_last, count); in clock_intr()
310 DPCPU_SET(lost_ticks, lost_ticks); in clock_intr()
/f-stack/freebsd/mips/mips/
H A Dtick.c241 DPCPU_SET(cycles_per_tick, div); in clock_start()
243 DPCPU_SET(compare_ticks, next); in clock_start()
252 DPCPU_SET(cycles_per_tick, 0); in clock_stop()
275 DPCPU_SET(compare_ticks, compare_next); in clock_intr()
282 DPCPU_SET(counter_upper, DPCPU_GET(counter_upper) + 1); in clock_intr()
284 DPCPU_SET(counter_lower_last, count); in clock_intr()
309 DPCPU_SET(lost_ticks, lost_ticks); in clock_intr()
/f-stack/freebsd/x86/xen/
H A Dhvm.c487 DPCPU_SET(vcpu_info, &HYPERVISOR_shared_info->vcpu_info[cpu]); in xen_hvm_cpu_init()
489 DPCPU_SET(vcpu_info, vcpu_info); in xen_hvm_cpu_init()
/f-stack/freebsd/sys/
H A Dpcpu.h125 #define DPCPU_SET(n, v) (*DPCPU_PTR(n) = v) macro