HomeSort by: relevance | last modified time | path
    Searched defs:uts (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/compat/linux32/common/
linux32_unistd.c 155 struct timespec ts0, ts1, uts, *ts = NULL; local in function:linux32_select1
168 uts.tv_sec = utv32.tv_sec;
169 uts.tv_nsec = (long)((unsigned long)utv32.tv_usec * 1000);
171 if (itimespecfix(&uts)) {
176 uts.tv_sec += uts.tv_nsec / 1000000000;
177 uts.tv_nsec %= 1000000000;
178 if (uts.tv_nsec < 0) {
179 uts.tv_sec -= 1;
180 uts.tv_nsec += 1000000000
241 struct timespec uts, ts0, ts1, *tsp; local in function:linux32_sys_pselect6
    [all...]
  /src/sys/compat/linux/common/
linux_misc.c 958 struct timespec ts0, ts1, uts, *ts = NULL; local in function:linux_select1
969 uts.tv_sec = ltv.tv_sec;
970 uts.tv_nsec = (long)((unsigned long)ltv.tv_usec * 1000);
971 if (itimespecfix(&uts)) {
976 uts.tv_sec += uts.tv_nsec / 1000000000;
977 uts.tv_nsec %= 1000000000;
978 if (uts.tv_nsec < 0) {
979 uts.tv_sec -= 1;
980 uts.tv_nsec += 1000000000
1043 struct timespec uts, ts0, ts1, *tsp; local in function:linux_sys_pselect6
    [all...]

Completed in 11 milliseconds