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

/freebsd-11-stable/sys/kern/
H A Dkern_ntptime.c255 struct timespec atv; /* nanosecond time */ local
259 nanotime(&atv);
260 ntvp->time.tv_sec = atv.tv_sec;
261 ntvp->time.tv_nsec = atv.tv_nsec;
983 struct timeval atv; local
999 atv.tv_sec = ltr / 1000000;
1000 atv.tv_usec = ltr % 1000000;
1001 if (atv.tv_usec < 0) {
1002 atv.tv_usec += 1000000;
1003 atv
[all...]
H A Dkern_time.c398 struct timeval atv; local
409 TIMESPEC_TO_TIMEVAL(&atv, ats);
410 error = settime(td, &atv);
640 struct timeval atv; local
645 microtime(&atv);
646 error = copyout(&atv, uap->tp, sizeof (atv));
666 struct timeval atv, *tvp; local
671 error = copyin(uap->tv, &atv, sizeof(atv));
[all...]
H A Dvfs_aio.c1875 struct timeval atv; local
1885 TIMESPEC_TO_TIMEVAL(&atv, ts);
1886 if (itimerfix(&atv))
1888 timo = tvtohz(&atv);
2389 struct timeval atv; local
2406 TIMESPEC_TO_TIMEVAL(&atv, ts);
2407 if (itimerfix(&atv))
2409 timo = tvtohz(&atv);
/freebsd-11-stable/sys/netinet6/
H A Din6_rmx.c196 struct timeval atv; local
201 atv.tv_sec = MTUTIMO_DEFAULT;
202 atv.tv_usec = 0;
203 callout_reset(&V_rtq_mtutimer, tvtohz(&atv), in6_mtutimo, rock);
/freebsd-11-stable/sys/amd64/linux32/
H A Dlinux32_machdep.c668 struct timeval atv; local
674 microtime(&atv);
675 atv32.tv_sec = atv.tv_sec;
676 atv32.tv_usec = atv.tv_usec;
691 struct timeval atv, *tvp; local
699 atv.tv_sec = atv32.tv_sec;
700 atv.tv_usec = atv32.tv_usec;
701 tvp = &atv;
/freebsd-11-stable/sys/netinet/
H A Dip_icmp.c950 struct timeval atv; local
953 getmicrotime(&atv);
954 t = (atv.tv_sec % (24*60*60)) * 1000 + atv.tv_usec / 1000;
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_misc.c1541 struct timeval atv; local
1543 microtime(&atv);
1544 return copyout(&atv, uap->tp, sizeof (atv));
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c700 struct timeval atv; local
706 microtime(&atv);
707 CP(atv, atv32, tv_sec);
708 CP(atv, atv32, tv_usec);
/freebsd-11-stable/sys/dev/ocs_fc/
H A Dsli4.h2550 atv:1, member in struct:sli4_req_common_set_features_xfer_rdy_t10pi_s
H A Docs_hw.c6349 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 157 milliseconds