Lines Matching refs:olddelta
594 syscallarg(struct timeval *) olddelta;
610 SCARG(uap, olddelta) ? &oldatv : NULL, l->l_proc);
611 if (SCARG(uap, olddelta))
612 error = copyout(&oldatv, SCARG(uap, olddelta),
613 sizeof(*SCARG(uap, olddelta)));
618 adjtime1(const struct timeval *delta, struct timeval *olddelta, struct proc *p)
621 if (olddelta) {
622 memset(olddelta, 0, sizeof(*olddelta));
624 olddelta->tv_sec = time_adjtime / 1000000;
625 olddelta->tv_usec = time_adjtime % 1000000;
626 if (olddelta->tv_usec < 0) {
627 olddelta->tv_usec += 1000000;
628 olddelta->tv_sec--;