Home
last modified time | relevance | path

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

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