Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dkern_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()
140 err_rate = ffclock_estimate.errb_rate; in ffclock_difftime()
411 struct ffclock_estimate *cest;
418 struct ffclock_estimate cest; in sys_ffclock_setestimate()
430 memcpy(&ffclock_estimate, &cest, sizeof(struct ffclock_estimate)); in sys_ffclock_setestimate()
443 struct ffclock_estimate *cest;
450 struct ffclock_estimate cest; in sys_ffclock_getestimate()
[all …]
H A Dkern_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/sys/sys/
H A Dtimeffc.h43 struct ffclock_estimate { struct
383 int ffclock_getestimate(struct ffclock_estimate *cest);
384 int ffclock_setestimate(struct ffclock_estimate *cest);
H A Dsysproto.h660 …char cest_l_[PADL_(struct ffclock_estimate *)]; struct ffclock_estimate * cest; char cest_r_[PADR_…
663 …char cest_l_[PADL_(struct ffclock_estimate *)]; struct ffclock_estimate * cest; char cest_r_[PADR_…
/freebsd/lib/libsys/
H A D_libsys.h27 struct ffclock_estimate;
206 typedef int (__sys_ffclock_setestimate_t)(struct ffclock_estimate *);
207 typedef int (__sys_ffclock_getestimate_t)(struct ffclock_estimate *);
605 int __sys_ffclock_setestimate(struct ffclock_estimate * cest);
606 int __sys_ffclock_getestimate(struct ffclock_estimate * cest);
/freebsd/sys/compat/freebsd32/
H A Dfreebsd32_misc.c4083 extern struct ffclock_estimate ffclock_estimate;
4090 struct ffclock_estimate cest; in freebsd32_ffclock_setestimate()
4114 memcpy(&ffclock_estimate, &cest, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_setestimate()
4124 struct ffclock_estimate cest; in freebsd32_ffclock_getestimate()
4129 memcpy(&cest, &ffclock_estimate, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_getestimate()