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

/illumos-gate/usr/src/uts/common/sys/
H A Dtime_impl.h66 #define TIMESPEC32_TO_TIMESPEC(ts, ts32) { \
67 (ts)->tv_sec = (time_t)(ts32)->tv_sec; \
68 (ts)->tv_nsec = (ts32)->tv_nsec; \
71 #define TIMESPEC_TO_TIMESPEC32(ts32, ts) { \
72 (ts32)->tv_sec = (time32_t)(ts)->tv_sec; \
73 (ts32)->tv_nsec = (ts)->tv_nsec; \
/illumos-gate/usr/src/uts/common/syscall/
H A Dutime.c128 timespec32_t ts32[2]; local
130 if (copyin(tsptr, ts32, sizeof (ts32)))
132 TIMESPEC32_TO_TIMESPEC(&ts[0], &ts32[0]);
133 TIMESPEC32_TO_TIMESPEC(&ts[1], &ts32[1]);
H A Dlwp_timer.c110 timespec32_t ts32; local
111 if (copyin(tsp, &ts32, sizeof (timespec32_t))) {
115 TIMESPEC32_TO_TIMESPEC(&lwptp->lwpt_rqtime, &ts32);
H A Dsem.c766 timespec32_t ts32; local
768 if (copyin(timeout, &ts32, sizeof (timespec32_t)))
770 TIMESPEC32_TO_TIMESPEC(ts, &ts32)
H A Dpoll.c672 timespec32_t ts32; local
674 if (copyin(timeoutp, &ts32, sizeof (ts32)))
676 TIMESPEC32_TO_TIMESPEC(&ts, &ts32)

Completed in 69 milliseconds