Searched refs:tv_usec (Results 201 - 225 of 686) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/amd/amd/
H A Damfs_host.c219 tv.tv_usec = 0;
362 tv.tv_usec = 0;
391 tv2.tv_usec = 0;
670 tv.tv_usec = 0;
/freebsd-11.0-release/contrib/ipfilter/
H A Dipmon.h90 #define ac_lastusec ac_last.tv_usec
/freebsd-11.0-release/contrib/ipfilter/ipsend/
H A Dsbpf.c127 to.tv_usec = 0;
/freebsd-11.0-release/contrib/jemalloc/src/
H A Dnstime.c134 time->ns = tv.tv_sec * BILLION + tv.tv_usec * 1000;
/freebsd-11.0-release/sys/dev/isci/
H A Disci_logger.c64 printf("isci: %d:%06d %s %s", (int)tv.tv_sec, (int)tv.tv_usec,
/freebsd-11.0-release/lib/libc/stdio/
H A Dxprintf_time.c70 nsec = tv->tv_usec * 1000;
/freebsd-11.0-release/sys/compat/linuxkpi/common/include/linux/
H A Dktime.h140 return (ktime_set(tv.tv_sec, tv.tv_usec * NSEC_PER_USEC));
/freebsd-11.0-release/tools/tools/net80211/wesside/udps/
H A Dudps.c160 tv.tv_usec = 1000*10;
/freebsd-11.0-release/contrib/ntp/sntp/libevent/
H A Devthread_pthread.c149 ts.tv_nsec = abstime.tv_usec*1000;
/freebsd-11.0-release/contrib/ntp/sntp/libevent/test/
H A Dbench_cascade.c180 tv->tv_sec * 1000000L + tv->tv_usec);
/freebsd-11.0-release/contrib/ntp/sntp/
H A Dutilities.c170 (int)tv->tv_usec,
/freebsd-11.0-release/usr.bin/rwall/
H A Drwall.c104 tv.tv_usec = 0;
/freebsd-11.0-release/usr.bin/talk/
H A Dinvite.c74 itimer.it_value.tv_usec = 0;
/freebsd-11.0-release/sys/rpc/
H A Dclnt_rc.c98 rc->rc_timeout.tv_usec = -1;
100 rc->rc_retry.tv_usec = 0;
285 && rc->rc_timeout.tv_usec == 0)
288 && utimeout.tv_usec == 0)) {
/freebsd-11.0-release/usr.sbin/ppp/
H A Dmain.c602 t.tv_sec = t.tv_usec = 0;
611 t.tv_sec = t.tv_usec = 0;
620 t.tv_sec = t.tv_usec = 0;
674 t.tv_usec = 100000;
/freebsd-11.0-release/usr.sbin/timed/timed/
H A Dglobals.h137 #define tvtomsround(tv) ((tv).tv_sec*1000 + ((tv).tv_usec + 500)/1000)
/freebsd-11.0-release/usr.sbin/watchdogd/
H A Dwatchdogd.c322 cmd_prefix, cmd, sec, (long)tv.tv_usec,
327 cmd_prefix, cmd, sec, (long)tv.tv_usec,
583 tv->tv_usec = ts->tv_nsec / 1000;
630 usec = tv->tv_usec;
/freebsd-11.0-release/usr.sbin/ypset/
H A Dypset.c88 tv.tv_usec = 0;
/freebsd-11.0-release/lib/libc/rpc/
H A Dclnt_dg.c249 cu->cu_wait.tv_usec = 0;
251 cu->cu_total.tv_usec = -1;
352 if (cu->cu_total.tv_usec == -1) {
375 time_waited.tv_usec = 0;
434 if (timeout.tv_sec == 0 && timeout.tv_usec == 0) {
461 if (tv.tv_sec < 0 || tv.tv_usec < 0)
462 tv.tv_sec = tv.tv_usec = 0;
849 t->tv_usec < -1 || t->tv_usec > 1000000);
/freebsd-11.0-release/sbin/ping6/
H A Dping6.c448 intvl.tv_usec =
453 if (intvl.tv_sec == 0 && intvl.tv_usec < 1) {
455 intvl.tv_usec = 1;
1085 intvl.tv_usec = 10000;
1088 intvl.tv_usec = interval % 1000 * 1000;
1113 timeout.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec;
1114 while (timeout.tv_usec <
[all...]
/freebsd-11.0-release/sys/netinet/
H A Dsctp_timer.c523 tv.tv_usec = cur_rto % 1000000;
526 if (min_wait.tv_sec < 0 || min_wait.tv_usec < 0) {
533 min_wait.tv_sec = min_wait.tv_usec = 0;
536 sctp_log_fr(cur_rto, now.tv_sec, now.tv_usec, SCTP_FR_T3_MARK_TIME);
537 sctp_log_fr(0, min_wait.tv_sec, min_wait.tv_usec, SCTP_FR_T3_MARK_TIME);
585 chk->sent_rcv_time.tv_usec,
597 chk->sent_rcv_time.tv_usec,
607 if (chk->sent_rcv_time.tv_usec >= min_wait.tv_usec) {
1435 (net->last_sent_time.tv_usec >
[all...]
/freebsd-11.0-release/contrib/sendmail/libmilter/
H A Dlibmilter.h161 timeout.tv_nsec = now.tv_usec / 1000; \
176 # define MI_MS(timeout) (((timeout)->tv_sec * 1000) + (timeout)->tv_usec)
/freebsd-11.0-release/crypto/openssh/
H A Dssh-keyscan.c609 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec > now.tv_usec))) {
612 seltime.tv_usec -= now.tv_usec;
613 if (seltime.tv_usec < 0) {
614 seltime.tv_usec += 1000000;
641 (c->c_tv.tv_sec == now.tv_sec && c->c_tv.tv_usec < now.tv_usec))) {
/freebsd-11.0-release/contrib/ntp/include/
H A Dparse.h100 ((tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp (uvp)->tv_usec))
/freebsd-11.0-release/contrib/gcc/
H A Dtimevar.c210 now->user = rusage.ru_utime.tv_sec + rusage.ru_utime.tv_usec * 1e-6;
211 now->sys = rusage.ru_stime.tv_sec + rusage.ru_stime.tv_usec * 1e-6;

Completed in 271 milliseconds

1234567891011>>