Searched refs:atv (Results 1 - 8 of 8) sorted by relevance

/freebsd-current/sys/kern/
H A Dkern_ntptime.c258 struct timespec atv; /* nanosecond time */ local
262 nanotime(&atv);
263 ntvp->time.tv_sec = atv.tv_sec;
264 ntvp->time.tv_nsec = atv.tv_nsec;
956 struct timeval atv; local
972 atv.tv_sec = ltr / 1000000;
973 atv.tv_usec = ltr % 1000000;
974 if (atv.tv_usec < 0) {
975 atv.tv_usec += 1000000;
976 atv
[all...]
H A Dkern_time.c405 struct timeval atv; local
419 TIMESPEC_TO_TIMEVAL(&atv, ats);
420 error = settime(td, &atv);
647 struct timeval atv; local
652 microtime(&atv);
653 error = copyout(&atv, uap->tp, sizeof (atv));
673 struct timeval atv, *tvp; local
678 error = copyin(uap->tv, &atv, sizeof(atv));
[all...]
H A Dvfs_aio.c1961 struct timeval atv; local
1971 TIMESPEC_TO_TIMEVAL(&atv, ts);
1972 if (itimerfix(&atv))
1974 timo = tvtohz(&atv);
2512 struct timeval atv; local
2529 TIMESPEC_TO_TIMEVAL(&atv, ts);
2530 if (itimerfix(&atv))
2532 timo = tvtohz(&atv);
/freebsd-current/sys/amd64/linux32/
H A Dlinux32_machdep.c405 struct timeval atv; local
411 microtime(&atv);
412 atv32.tv_sec = atv.tv_sec;
413 atv32.tv_usec = atv.tv_usec;
428 struct timeval atv, *tvp; local
436 atv.tv_sec = atv32.tv_sec;
437 atv.tv_usec = atv32.tv_usec;
438 tvp = &atv;
/freebsd-current/sys/netinet/
H A Dip_icmp.c1041 struct timeval atv; local
1044 getmicrotime(&atv);
1045 t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;
/freebsd-current/sys/compat/freebsd32/
H A Dfreebsd32_misc.c910 struct timeval atv; local
916 microtime(&atv);
917 CP(atv, atv32, tv_sec);
918 CP(atv, atv32, tv_usec);
/freebsd-current/sys/dev/ocs_fc/
H A Dsli4.h2589 atv:1, member in struct:sli4_req_common_set_features_xfer_rdy_t10pi_s
H A Docs_hw.c6350 param.atv = (hw->config.auto_xfer_rdy_app_tag_valid ? 1 : 0);
6378 ocs_log_test(hw->os, "Auto XFER RDY T10 PI configured rtc:%d atv:%d p_type:%d app_tag:%x blk_size:%d\n",
6379 param.rtc, param.atv, param.p_type,

Completed in 278 milliseconds