Searched refs:ffclock_estimate (Results 1 – 6 of 6) sorted by relevance
| /freebsd-head/sys/kern/ |
| HD | 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 …]
|
| HD | kern_tc.c | 510 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-head/sys/sys/ |
| HD | timeffc.h | 43 struct ffclock_estimate { struct 383 int ffclock_getestimate(struct ffclock_estimate *cest); 384 int ffclock_setestimate(struct ffclock_estimate *cest);
|
| HD | sysproto.h | 660 …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-head/lib/libsys/ |
| HD | _libsys.h | 28 struct ffclock_estimate; 208 typedef int (__sys_ffclock_setestimate_t)(struct ffclock_estimate *); 209 typedef int (__sys_ffclock_getestimate_t)(struct ffclock_estimate *); 609 int __sys_ffclock_setestimate(struct ffclock_estimate * cest); 610 int __sys_ffclock_getestimate(struct ffclock_estimate * cest);
|
| /freebsd-head/sys/compat/freebsd32/ |
| HD | freebsd32_misc.c | 4145 extern struct ffclock_estimate ffclock_estimate; 4152 struct ffclock_estimate cest; in freebsd32_ffclock_setestimate() 4176 memcpy(&ffclock_estimate, &cest, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_setestimate() 4186 struct ffclock_estimate cest; in freebsd32_ffclock_getestimate() 4191 memcpy(&cest, &ffclock_estimate, sizeof(struct ffclock_estimate)); in freebsd32_ffclock_getestimate()
|