Searched refs:intvl (Results 1 - 12 of 12) sorted by last modified time

/freebsd-11-stable/contrib/sendmail/libsm/
H A Dclock.c48 ** intvl -- interval until next event occurs (milliseconds).
64 sm_seteventm(intvl, func, arg)
65 int intvl;
77 return sm_sigsafe_seteventm(intvl, func, arg);
87 sm_sigsafe_seteventm(intvl, func, arg)
88 int intvl;
103 if (intvl <= 0)
108 ival.tv_sec = intvl / 1000;
109 ival.tv_usec = (intvl - ival.tv_sec * 1000) * 10;
115 nowi = now + (time_t)(intvl / 100
[all...]
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-vrrp.c129 ND_PRINT((ndo, ", intvl %us, length %u", bp[5], len));
131 uint16_t intvl = (bp[4] & 0x0f) << 8 | bp[5]; local
132 ND_PRINT((ndo, ", intvl %ucs, length %u", intvl, len));
/freebsd-11-stable/contrib/tcsh/
H A Dsh.c2239 int intvl, cnt; local
2249 intvl = (cnt && number(*vp)) ? (--cnt, getn(*vp++)) : MAILINTVL;
2250 if (intvl < 1)
2251 intvl = 1;
2252 if (chktim + intvl > t)
/freebsd-11-stable/sbin/ping/
H A Dping.c235 struct timeval last, intvl; local
905 intvl.tv_sec = 0;
906 intvl.tv_usec = 10000;
908 intvl.tv_sec = interval / 1000;
909 intvl.tv_usec = interval % 1000 * 1000;
924 timeout.tv_sec = last.tv_sec + intvl.tv_sec - now.tv_sec;
925 timeout.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec;
987 intvl.tv_usec = 0;
989 intvl.tv_sec = 2 * tmax / 1000;
990 if (!intvl
[all...]
/freebsd-11-stable/sys/dev/hyperv/vmbus/
H A Dvmbus_chan.c1287 sbintime_t intvl; local
1293 intvl = SBT_1S / arg->poll_hz;
1294 if (intvl == 0)
1295 intvl = 1;
1296 if (intvl == chan->ch_poll_intvl) {
1300 chan->ch_poll_intvl = intvl;
/freebsd-11-stable/contrib/sendmail/src/
H A Dconvtime.c105 ** intvl -- the interval to be converted
110 ** A pointer to a string version of intvl suitable for
123 pintvl(intvl, brief)
124 time_t intvl;
131 if (intvl == 0 && !brief)
133 if (intvl == NOW)
137 se = intvl % 60;
138 intvl /= 60;
139 mi = intvl % 60;
140 intvl /
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-profile.c143 tree start = build_int_cst_type (integer_type_node, value->hdata.intvl.int_start);
144 tree steps = build_int_cst_type (unsigned_type_node, value->hdata.intvl.steps);
H A Dvalue-prof.c649 for (i = 0; i < histogram->hdata.intvl.steps; i++)
663 for (i = 0; i < histogram->hdata.intvl.steps; i++)
669 if (i == histogram->hdata.intvl.steps)
762 hist->hdata.intvl.int_start = 0;
763 hist->hdata.intvl.steps = 2;
807 hist->hdata.intvl.int_start,
808 (hist->hdata.intvl.int_start
809 + hist->hdata.intvl.steps - 1));
811 hist->n_counters = hist->hdata.intvl.steps + 2;
H A Dvalue-prof.h58 } intvl; /* Interval histogram data. */ member in union:histogram_value_t::__anon1404
/freebsd-11-stable/sbin/ping6/
H A Dping6.c289 struct timeval last, intvl; local
447 intvl.tv_sec = (long)t;
448 intvl.tv_usec =
449 (long)((t - intvl.tv_sec) * 1000000);
450 if (intvl.tv_sec < 0)
453 if (intvl.tv_sec == 0 && intvl.tv_usec < 1) {
455 intvl.tv_usec = 1;
1084 intvl.tv_sec = 0;
1085 intvl
[all...]
/freebsd-11-stable/usr.bin/systat/
H A Dkeyboard.c57 struct timeval last, intvl, now, tm; local
62 intvl.tv_sec = delay / 1000000;
63 intvl.tv_usec = delay % 1000000;
70 tm.tv_sec = last.tv_sec + intvl.tv_sec - now.tv_sec;
71 tm.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec;
104 intvl.tv_sec = delay / 1000000;
105 intvl.tv_usec = delay % 1000000;
/freebsd-11-stable/usr.sbin/timed/timed/
H A Dreadmsg.c68 * `intvl' seconds. If not, it returns NULL.
72 readmsg(int type, char *machfrom, struct timeval *intvl, struct netinfo *netfrom) argument
168 timevaladd(&rtout, intvl);

Completed in 142 milliseconds