Searched refs:ffclock_estimate (Results 1 – 6 of 6) sorted by relevance
/freebsd/sys/kern/ |
H A D | kern_ffclock.c | 53 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 …]
|
H A D | kern_tc.c | 511 struct ffclock_estimate ffclock_estimate; variable 518 struct ffclock_estimate cest; 561 struct ffclock_estimate cest; in ffclock_reset_clock() 564 memset(&cest, 0, sizeof(struct ffclock_estimate)); in ffclock_reset_clock() 578 bcopy(&cest, &ffclock_estimate, sizeof(struct ffclock_estimate)); in ffclock_reset_clock() 626 struct ffclock_estimate *cest; in ffclock_windup() 643 bcopy(&fftimehands->cest, cest, sizeof(struct ffclock_estimate)); in ffclock_windup() 679 bcopy(&ffclock_estimate, cest, sizeof(struct ffclock_estimate)); in ffclock_windup() 779 struct ffclock_estimate *cest; in ffclock_change_tc() 789 bcopy(&(fftimehands->cest), cest, sizeof(struct ffclock_estimate)); in ffclock_change_tc() [all …]
|
/freebsd/sys/sys/ |
H A D | timeffc.h | 43 struct ffclock_estimate { struct 385 int ffclock_getestimate(struct ffclock_estimate *cest); 386 int ffclock_setestimate(struct ffclock_estimate *cest);
|
H A D | sysproto.h | 652 char cest_l_[PADL_(struct ffclock_estimate *)]; struct ffclock_estimate * cest; char cest_r_[PADR_(struct ffclock_estimate *)]; 655 char cest_l_[PADL_(struct ffclock_estimate *)]; struct ffclock_estimate * cest; char cest_r_[PADR_(struct ffclock_estimate *)];
|
/freebsd/lib/libsys/ |
H A D | _libsys.h | 28 struct ffclock_estimate; 206 typedef int (__sys_ffclock_setestimate_t)(struct ffclock_estimate *); 207 typedef int (__sys_ffclock_getestimate_t)(struct ffclock_estimate *); 610 int __sys_ffclock_setestimate(struct ffclock_estimate * cest); 611 int __sys_ffclock_getestimate(struct ffclock_estimate * cest);
|
/freebsd/sys/compat/freebsd32/ |
H A D | freebsd32_misc.c | 4148 extern struct ffclock_estimate ffclock_estimate; 4155 struct ffclock_estimate cest; in freebsd32_ffclock_setestimate() 4179 memcpy(&ffclock_estimate, &cest, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_setestimate() 4189 struct ffclock_estimate cest; in freebsd32_ffclock_getestimate() 4194 memcpy(&cest, &ffclock_estimate, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_getestimate()
|