Searched refs:intvl (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/contrib/sendmail/src/
H A Dconvtime.c106 ** intvl -- the interval to be converted
111 ** A pointer to a string version of intvl suitable for
124 pintvl(intvl, brief)
125 time_t intvl;
132 if (intvl == 0 && !brief)
134 if (intvl == NOW)
138 se = intvl % 60;
139 intvl /= 60;
140 mi = intvl % 60;
141 intvl /
[all...]
/freebsd-current/usr.bin/systat/
H A Dkeyboard.c53 struct timeval last, intvl, now, tm; local
58 intvl.tv_sec = delay / 1000000;
59 intvl.tv_usec = delay % 1000000;
66 tm.tv_sec = last.tv_sec + intvl.tv_sec - now.tv_sec;
67 tm.tv_usec = last.tv_usec + intvl.tv_usec - now.tv_usec;
100 intvl.tv_sec = delay / 1000000;
101 intvl.tv_usec = delay % 1000000;
/freebsd-current/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-current/contrib/tcpdump/
H A Dprint-vrrp.c129 ND_PRINT(", intvl %us, length %u", GET_U_1(bp + 5), len);
131 uint16_t intvl = (GET_U_1(bp + 4) & 0x0f) << 8 | GET_U_1(bp + 5); local
132 ND_PRINT(", intvl %ucs, length %u", intvl, len);
/freebsd-current/sbin/ping/
H A Dping.c201 struct timespec last, intvl; local
882 intvl.tv_sec = 0;
883 intvl.tv_nsec = 10000000;
885 intvl.tv_sec = interval / 1000;
886 intvl.tv_nsec = interval % 1000 * 1000000;
907 timespecadd(&last, &intvl, &timeout);
971 intvl.tv_nsec = 0;
973 intvl.tv_sec = 2 * tmax / 1000;
974 if (intvl.tv_sec == 0)
975 intvl
[all...]
H A Dping6.c271 struct timespec last, intvl; local
311 intvl.tv_sec = interval / 1000;
312 intvl.tv_nsec = interval % 1000 * 1000000;
444 intvl.tv_sec = (time_t)t;
445 intvl.tv_nsec =
446 (long)((t - intvl.tv_sec) * 1000000000);
447 if (intvl.tv_sec < 0)
450 if (intvl.tv_sec == 0 && intvl.tv_nsec < 1000) {
452 intvl
[all...]
/freebsd-current/sys/dev/hyperv/vmbus/
H A Dvmbus_chan.c1438 sbintime_t intvl; local
1444 intvl = SBT_1S / arg->poll_hz;
1445 if (intvl == 0)
1446 intvl = 1;
1447 if (intvl == chan->ch_poll_intvl) {
1451 chan->ch_poll_intvl = intvl;
/freebsd-current/contrib/tcsh/
H A Dsh.c2243 int intvl, cnt; local
2253 intvl = (cnt && number(*vp)) ? (--cnt, getn(*vp++)) : MAILINTVL;
2254 if (intvl < 1)
2255 intvl = 1;
2256 if (chktim + intvl > t)
/freebsd-current/sys/compat/linuxkpi/common/include/net/
H A Dcfg80211.h1744 uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len,
1755 uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, gfp_t gfp)
1741 cfg80211_inform_bss(struct wiphy *wiphy, struct linuxkpi_ieee80211_channel *channel, enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x, uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, int signal, gfp_t gfp) argument
1752 cfg80211_inform_bss_data(struct wiphy *wiphy, struct cfg80211_inform_bss *bss_data, enum cfg80211_bss_frame_type bss_ftype, const uint8_t *bss, int _x, uint16_t cap, uint16_t intvl, const uint8_t *ie, size_t ie_len, gfp_t gfp) argument
/freebsd-current/sys/contrib/dev/rtw89/
H A Dcoex.c934 bt->scan_info_v1[i].intvl == 0)
943 pscan_v2->para[i].intvl == 0)
6500 le16_to_cpu(bt->scan_info_v1[BTC_SCAN_INQ].intvl),
6502 le16_to_cpu(bt->scan_info_v1[BTC_SCAN_PAGE].intvl),
6504 le16_to_cpu(bt->scan_info_v1[BTC_SCAN_BLE].intvl),
6506 le16_to_cpu(bt->scan_info_v1[BTC_SCAN_INIT].intvl));
6511 le16_to_cpu(bt->scan_info_v2[CXSCAN_BG].intvl),
6513 le16_to_cpu(bt->scan_info_v2[CXSCAN_INIT].intvl),
6515 le16_to_cpu(bt->scan_info_v2[CXSCAN_LE].intvl));
H A Dcore.h1702 __le16 intvl; member in struct:rtw89_btc_bt_scan_info_v1
1708 __le16 intvl; member in struct:rtw89_btc_bt_scan_info_v2

Completed in 361 milliseconds