Home
last modified time | relevance | path

Searched refs:vdso_th32 (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/powerpc/powerpc/
H A Dclock.c94 static uint32_t decr_vdso_timehands32(struct vdso_timehands32 *vdso_th32,
244 decr_vdso_timehands32(struct vdso_timehands32 *vdso_th32, in decr_vdso_timehands32() argument
247 vdso_th32->th_algo = VDSO_TH_ALGO_PPC_TB; in decr_vdso_timehands32()
248 bzero(vdso_th32->th_res, sizeof(vdso_th32->th_res)); in decr_vdso_timehands32()
/freebsd/sys/x86/x86/
H A Dtsc.c107 static uint32_t x86_tsc_vdso_timehands32(struct vdso_timehands32 *vdso_th32,
984 x86_tsc_vdso_timehands32(struct vdso_timehands32 *vdso_th32, in x86_tsc_vdso_timehands32() argument
988 vdso_th32->th_algo = VDSO_TH_ALGO_X86_TSC; in x86_tsc_vdso_timehands32()
989 vdso_th32->th_x86_shift = (int)(intptr_t)tc->tc_priv; in x86_tsc_vdso_timehands32()
990 vdso_th32->th_x86_hpet_idx = 0xffffffff; in x86_tsc_vdso_timehands32()
991 vdso_th32->th_x86_pvc_last_systime[0] = 0; in x86_tsc_vdso_timehands32()
992 vdso_th32->th_x86_pvc_last_systime[1] = 0; in x86_tsc_vdso_timehands32()
993 vdso_th32->th_x86_pvc_stable_mask = 0; in x86_tsc_vdso_timehands32()
994 bzero(vdso_th32->th_res, sizeof(vdso_th32->th_res)); in x86_tsc_vdso_timehands32()
/freebsd/sys/sys/
H A Dvdso.h149 uint32_t tc_fill_vdso_timehands32(struct vdso_timehands32 *vdso_th32);
150 uint32_t cpu_fill_vdso_timehands32(struct vdso_timehands32 *vdso_th32,
/freebsd/sys/dev/acpica/
H A Dacpi_hpet.c163 hpet_vdso_timehands32(struct vdso_timehands32 *vdso_th32, in hpet_vdso_timehands32() argument
169 vdso_th32->th_algo = VDSO_TH_ALGO_X86_HPET; in hpet_vdso_timehands32()
170 vdso_th32->th_x86_shift = 0; in hpet_vdso_timehands32()
171 vdso_th32->th_x86_hpet_idx = device_get_unit(sc->dev); in hpet_vdso_timehands32()
172 vdso_th32->th_x86_pvc_last_systime[0] = 0; in hpet_vdso_timehands32()
173 vdso_th32->th_x86_pvc_last_systime[1] = 0; in hpet_vdso_timehands32()
174 vdso_th32->th_x86_pvc_stable_mask = 0; in hpet_vdso_timehands32()
175 bzero(vdso_th32->th_res, sizeof(vdso_th32->th_res)); in hpet_vdso_timehands32()
H A Dacpi_hpet.h73 uint32_t hpet_vdso_timehands32(struct vdso_timehands32 *vdso_th32,
/freebsd/sys/kern/
H A Dsubr_dummy_vdso_tc.c41 cpu_fill_vdso_timehands32(struct vdso_timehands32 *vdso_th32, in cpu_fill_vdso_timehands32() argument
H A Dkern_tc.c2211 tc_fill_vdso_timehands32(struct vdso_timehands32 *vdso_th32) in tc_fill_vdso_timehands32() argument
2217 *(uint64_t *)&vdso_th32->th_scale[0] = th->th_scale; in tc_fill_vdso_timehands32()
2218 vdso_th32->th_offset_count = th->th_offset_count; in tc_fill_vdso_timehands32()
2219 vdso_th32->th_counter_mask = th->th_counter->tc_counter_mask; in tc_fill_vdso_timehands32()
2220 vdso_th32->th_offset.sec = th->th_offset.sec; in tc_fill_vdso_timehands32()
2221 *(uint64_t *)&vdso_th32->th_offset.frac[0] = th->th_offset.frac; in tc_fill_vdso_timehands32()
2222 vdso_th32->th_boottime.sec = th->th_boottime.sec; in tc_fill_vdso_timehands32()
2223 *(uint64_t *)&vdso_th32->th_boottime.frac[0] = th->th_boottime.frac; in tc_fill_vdso_timehands32()
2225 enabled = th->th_counter->tc_fill_vdso_timehands32(vdso_th32, in tc_fill_vdso_timehands32()