Home
last modified time | relevance | path

Searched refs:atv (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dadjtime.c46 struct timeval atv, oatv; in adjtime() local
56 if (copyin(delta, &atv, sizeof (atv))) in adjtime()
63 TIMEVAL32_TO_TIMEVAL(&atv, &atv32); in adjtime()
66 if (atv.tv_usec <= -MICROSEC || atv.tv_usec >= MICROSEC) in adjtime()
73 ndelta = (int64_t)atv.tv_sec * NANOSEC + atv.tv_usec * 1000; in adjtime()
/illumos-gate/usr/src/uts/common/io/
H A Dvuid_queue.c300 if ((atv.tv_usec < btv.tv_usec) && atv.tv_sec) { in tv_subt()
301 atv.tv_usec += 1000000; in tv_subt()
302 atv.tv_sec--; in tv_subt()
305 atv.tv_usec -= btv.tv_usec; in tv_subt()
307 atv.tv_usec = 0; in tv_subt()
308 if (atv.tv_sec > btv.tv_sec) in tv_subt()
309 atv.tv_sec -= btv.tv_sec; in tv_subt()
311 if (atv.tv_sec < btv.tv_sec) in tv_subt()
312 atv.tv_usec = 0; in tv_subt()
313 atv.tv_sec = 0; in tv_subt()
[all …]
/illumos-gate/usr/src/uts/common/os/
H A Dtimers.c167 struct timeval atv; in gettimeofday() local
170 uniqtime(&atv); in gettimeofday()
172 if (copyout(&atv, tp, sizeof (atv))) in gettimeofday()
177 if (TIMEVAL_OVERFLOW(&atv)) in gettimeofday()
179 TIMEVAL_TO_TIMEVAL32(&tv32, &atv); in gettimeofday()