Searched refs:olddelta (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/ntp/libntp/
H A Dadjtime.c24 int adjtime(struct timeval *delta, struct timeval *olddelta);
26 int adjtime(struct timeval *delta, struct timeval *olddelta) argument
92 if (olddelta != NULL) {
94 (long)olddelta->tv_sec = prev_correction / 1000000LL;
95 olddelta->tv_usec = prev_correction % 1000000LL;
164 register struct timeval *olddelta
175 return(_adjtime(delta, olddelta));
192 return(_adjtime(&newdelta, olddelta));
201 if (olddelta)
202 olddelta
279 adjtime(struct timeval *delta, struct timeval *olddelta) argument
[all...]
/freebsd-11-stable/contrib/ntp/adjtimed/
H A Dadjtimed.c49 int AdjustClockRate (register struct timeval *delta, register struct timeval *olddelta);
276 register struct timeval *olddelta
334 if (olddelta) {
337 olddelta->tv_sec = dt / MILLION;
338 olddelta->tv_usec = dt - (olddelta->tv_sec * MILLION);
/freebsd-11-stable/sys/kern/
H A Dkern_ntptime.c957 struct timeval *olddelta; member in struct:adjtime_args
964 struct timeval delta, olddelta, *deltap; local
974 error = kern_adjtime(td, deltap, &olddelta);
975 if (uap->olddelta && error == 0)
976 error = copyout(&olddelta, uap->olddelta, sizeof(olddelta));
981 kern_adjtime(struct thread *td, struct timeval *delta, struct timeval *olddelta) argument
998 if (olddelta != NULL) {
1005 *olddelta
[all...]
H A Dsystrace_args.c809 uarg[1] = (intptr_t) p->olddelta; /* struct timeval * */
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dnetbsd_syscall_hooks.h732 #define __sanitizer_syscall_pre_compat_50_adjtime(delta, olddelta) \
734 (long long)(olddelta))
735 #define __sanitizer_syscall_post_compat_50_adjtime(res, delta, olddelta) \
737 (long long)(olddelta))
2285 #define __sanitizer_syscall_pre___adjtime50(delta, olddelta) \
2287 (long long)(olddelta))
2288 #define __sanitizer_syscall_post___adjtime50(res, delta, olddelta) \
2290 (long long)(olddelta))
3288 long long olddelta);
3291 long long olddelta);
[all...]
/freebsd-11-stable/sys/sys/
H A Dsyscallsubr.h75 struct timeval *olddelta);
H A Dsysproto.h469 char olddelta_l_[PADL_(struct timeval *)]; struct timeval * olddelta; char olddelta_r_[PADR_(struct timeval *)]; member in struct:adjtime_args
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c1450 struct timeval delta, olddelta, *deltap; local
1462 error = kern_adjtime(td, deltap, &olddelta);
1463 if (uap->olddelta && error == 0) {
1464 CP(olddelta, tv32, tv_sec);
1465 CP(olddelta, tv32, tv_usec);
1466 error = copyout(&tv32, uap->olddelta, sizeof(tv32));
H A Dfreebsd32_proto.h137 char olddelta_l_[PADL_(struct timeval32 *)]; struct timeval32 * olddelta; char olddelta_r_[PADR_(struct timeval32 *)]; member in struct:freebsd32_adjtime_args
H A Dfreebsd32_systrace_args.c812 uarg[1] = (intptr_t) p->olddelta; /* struct timeval32 * */

Completed in 325 milliseconds