Home
last modified time | relevance | path

Searched refs:ts32 (Results 1 – 5 of 5) sorted by relevance

/freebsd-9-stable/sys/compat/freebsd32/
Dfreebsd32_misc.c673 struct timespec32 ts32; in freebsd32_pselect() local
680 error = copyin(uap->ts, &ts32, sizeof(ts32)); in freebsd32_pselect()
683 CP(ts32, ts, tv_sec); in freebsd32_pselect()
684 CP(ts32, ts, tv_nsec); in freebsd32_pselect()
764 struct timespec32 ts32; in freebsd32_kevent() local
773 error = copyin(uap->timeout, &ts32, sizeof(ts32)); in freebsd32_kevent()
776 CP(ts32, ts, tv_sec); in freebsd32_kevent()
777 CP(ts32, ts, tv_nsec); in freebsd32_kevent()
2308 struct timespec32 ts32; in freebsd32_clock_getres() local
2315 CP(ts, ts32, tv_sec); in freebsd32_clock_getres()
[all …]
/freebsd-9-stable/contrib/ntp/ntpd/
Dntp_leapsec.c287 uint32_t ts32 , in leapsec_query() argument
297 ts64 = ntpcal_ntp_to_ntp(ts32, pivot); in leapsec_query()
337 ts32 = next.D_s.lo; in leapsec_query()
356 qr->ddist = due32 - ts32; in leapsec_query()
361 if (!betweenu32(due32 - SECSPERDAY, ts32, due32)) in leapsec_query()
365 if (!betweenu32(due32 - 10, ts32, due32)) in leapsec_query()
/freebsd-9-stable/sys/amd64/linux32/
Dlinux32_machdep.c921 struct l_timespec ts32; in linux_sched_rr_get_interval() local
927 ts32.tv_sec = ts.tv_sec; in linux_sched_rr_get_interval()
928 ts32.tv_nsec = ts.tv_nsec; in linux_sched_rr_get_interval()
929 return (copyout(&ts32, uap->interval, sizeof(ts32))); in linux_sched_rr_get_interval()
/freebsd-9-stable/sys/kern/
Dvfs_aio.c2801 struct timespec32 ts32; in freebsd32_aio_suspend() local
2812 if ((error = copyin(uap->timeout, &ts32, sizeof(ts32))) != 0) in freebsd32_aio_suspend()
2814 CP(ts32, ts, tv_sec); in freebsd32_aio_suspend()
2815 CP(ts32, ts, tv_nsec); in freebsd32_aio_suspend()
2884 struct timespec32 ts32; in freebsd32_aio_waitcomplete() local
2890 error = copyin(uap->timeout, &ts32, sizeof(ts32)); in freebsd32_aio_waitcomplete()
2893 CP(ts32, ts, tv_sec); in freebsd32_aio_waitcomplete()
2894 CP(ts32, ts, tv_nsec); in freebsd32_aio_waitcomplete()
Dkern_umtx.c3520 struct timespec32 ts32; in umtx_copyin_timeout32() local
3523 error = copyin(addr, &ts32, sizeof(struct timespec32)); in umtx_copyin_timeout32()
3525 if (ts32.tv_sec < 0 || in umtx_copyin_timeout32()
3526 ts32.tv_nsec >= 1000000000 || in umtx_copyin_timeout32()
3527 ts32.tv_nsec < 0) in umtx_copyin_timeout32()
3530 tsp->tv_sec = ts32.tv_sec; in umtx_copyin_timeout32()
3531 tsp->tv_nsec = ts32.tv_nsec; in umtx_copyin_timeout32()