Searched defs:ntv (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/syscall/
H A Dntptime.c75 struct ntptimeval ntv; local
81 ntv.time.tv_sec = tod.tv_sec;
82 ntv.time.tv_usec = tod.tv_nsec / (NANOSEC / MICROSEC);
83 ntv.maxerror = time_maxerror;
84 ntv.esterror = time_esterror;
87 if (copyout(&ntv, tp, sizeof (ntv)))
92 if (TIMEVAL_OVERFLOW(&ntv.time))
95 TIMEVAL_TO_TIMEVAL32(&ntv32.time, &ntv.time);
97 ntv32.maxerror = ntv
144 struct timex ntv; local
[all...]
/illumos-gate/usr/src/cmd/truss/
H A Dexpound.c4191 struct ntptimeval ntv; local
4198 if (Pread(Proc, &ntv, sizeof (ntv), offset)
4199 != sizeof (ntv))
4208 TIMEVAL32_TO_TIMEVAL(&ntv.time, &ntv32.time);
4209 ntv.maxerror = ntv32.maxerror;
4210 ntv.esterror = ntv32.esterror;
4214 ntv.time.tv_sec, ntv.time.tv_usec);
4215 (void) printf("\tmaxerror: %11d usec\n", ntv
[all...]

Completed in 66 milliseconds