Searched refs:ts32 (Results 1 - 4 of 4) sorted by relevance

/freebsd-10-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c683 struct timespec32 ts32; local
690 error = copyin(uap->ts, &ts32, sizeof(ts32));
693 CP(ts32, ts, tv_sec);
694 CP(ts32, ts, tv_nsec);
774 struct timespec32 ts32; local
783 error = copyin(uap->timeout, &ts32, sizeof(ts32));
786 CP(ts32, ts, tv_sec);
787 CP(ts32, t
1434 struct timespec32 ts32[2]; local
1455 struct timespec32 ts32[2]; local
2420 struct timespec32 ts32; local
2548 struct timespec32 ts32; local
2611 struct timespec32 ts32; local
3247 struct timespec32 ts32; local
[all...]
/freebsd-10-stable/contrib/ntp/ntpd/
H A Dntp_leapsec.c287 uint32_t ts32 ,
297 ts64 = ntpcal_ntp_to_ntp(ts32, pivot);
337 ts32 = next.D_s.lo;
356 qr->ddist = due32 - ts32;
361 if (!betweenu32(due32 - SECSPERDAY, ts32, due32))
365 if (!betweenu32(due32 - 10, ts32, due32))
/freebsd-10-stable/sys/kern/
H A Dvfs_aio.c2861 struct timespec32 ts32; local
2872 if ((error = copyin(uap->timeout, &ts32, sizeof(ts32))) != 0)
2874 CP(ts32, ts, tv_sec);
2875 CP(ts32, ts, tv_nsec);
2952 struct timespec32 ts32; local
2958 error = copyin(uap->timeout, &ts32, sizeof(ts32));
2961 CP(ts32, ts, tv_sec);
2962 CP(ts32, t
[all...]
H A Dkern_umtx.c3775 struct timespec32 ts32; local
3778 error = copyin(addr, &ts32, sizeof(struct timespec32));
3780 if (ts32.tv_sec < 0 ||
3781 ts32.tv_nsec >= 1000000000 ||
3782 ts32.tv_nsec < 0)
3785 tsp->tv_sec = ts32.tv_sec;
3786 tsp->tv_nsec = ts32.tv_nsec;

Completed in 176 milliseconds