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

/freebsd-10.0-release/sys/compat/freebsd32/
H A Dfreebsd32_misc.c671 struct timespec32 ts32; local
678 error = copyin(uap->ts, &ts32, sizeof(ts32));
681 CP(ts32, ts, tv_sec);
682 CP(ts32, ts, tv_nsec);
762 struct timespec32 ts32; local
771 error = copyin(uap->timeout, &ts32, sizeof(ts32));
774 CP(ts32, ts, tv_sec);
775 CP(ts32, t
2319 struct timespec32 ts32; local
2447 struct timespec32 ts32; local
2484 struct timespec32 ts32; local
[all...]
/freebsd-10.0-release/sys/amd64/linux32/
H A Dlinux32_machdep.c924 struct l_timespec ts32; local
930 ts32.tv_sec = ts.tv_sec;
931 ts32.tv_nsec = ts.tv_nsec;
932 return (copyout(&ts32, uap->interval, sizeof(ts32)));
/freebsd-10.0-release/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.c3571 struct timespec32 ts32; local
3574 error = copyin(addr, &ts32, sizeof(struct timespec32));
3576 if (ts32.tv_sec < 0 ||
3577 ts32.tv_nsec >= 1000000000 ||
3578 ts32.tv_nsec < 0)
3581 tsp->tv_sec = ts32.tv_sec;
3582 tsp->tv_nsec = ts32.tv_nsec;

Completed in 179 milliseconds