Home
last modified time | relevance | path

Searched refs:ffclock_estimate (Results 1 – 5 of 5) sorted by relevance

/freebsd-14-stable/sys/kern/
HDkern_ffclock.c53 extern struct ffclock_estimate ffclock_estimate;
71 struct ffclock_estimate cest; in ffclock_abstime()
86 update_ffcount = ffclock_estimate.update_ffcount; in ffclock_abstime()
87 bcopy(&ffclock_estimate, &cest, sizeof(struct ffclock_estimate)); in ffclock_abstime()
88 } while (update_ffcount != ffclock_estimate.update_ffcount); in ffclock_abstime()
139 update_ffcount = ffclock_estimate.update_ffcount; in ffclock_difftime()
140 err_rate = ffclock_estimate.errb_rate; in ffclock_difftime()
141 } while (update_ffcount != ffclock_estimate.update_ffcount); in ffclock_difftime()
411 struct ffclock_estimate *cest;
418 struct ffclock_estimate cest; in sys_ffclock_setestimate()
[all …]
HDkern_tc.c510 struct ffclock_estimate ffclock_estimate; variable
517 struct ffclock_estimate cest;
560 struct ffclock_estimate cest; in ffclock_reset_clock()
563 memset(&cest, 0, sizeof(struct ffclock_estimate)); in ffclock_reset_clock()
577 bcopy(&cest, &ffclock_estimate, sizeof(struct ffclock_estimate)); in ffclock_reset_clock()
625 struct ffclock_estimate *cest; in ffclock_windup()
642 bcopy(&fftimehands->cest, cest, sizeof(struct ffclock_estimate)); in ffclock_windup()
678 bcopy(&ffclock_estimate, cest, sizeof(struct ffclock_estimate)); in ffclock_windup()
778 struct ffclock_estimate *cest; in ffclock_change_tc()
788 bcopy(&(fftimehands->cest), cest, sizeof(struct ffclock_estimate)); in ffclock_change_tc()
[all …]
/freebsd-14-stable/sys/sys/
HDtimeffc.h43 struct ffclock_estimate { struct
383 int ffclock_getestimate(struct ffclock_estimate *cest);
384 int ffclock_setestimate(struct ffclock_estimate *cest);
HDsysproto.h666 …char cest_l_[PADL_(struct ffclock_estimate *)]; struct ffclock_estimate * cest; char cest_r_[PADR_…
669 …char cest_l_[PADL_(struct ffclock_estimate *)]; struct ffclock_estimate * cest; char cest_r_[PADR_…
/freebsd-14-stable/sys/compat/freebsd32/
HDfreebsd32_misc.c4142 extern struct ffclock_estimate ffclock_estimate;
4149 struct ffclock_estimate cest; in freebsd32_ffclock_setestimate()
4173 memcpy(&ffclock_estimate, &cest, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_setestimate()
4183 struct ffclock_estimate cest; in freebsd32_ffclock_getestimate()
4188 memcpy(&cest, &ffclock_estimate, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_getestimate()