HomeSort by: relevance | last modified time | path
    Searched defs:txtime (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/arch/hpcmips/tx/
tx39clock.c 69 struct txtime { struct
94 void __tx39timer_rtcget(struct txtime *);
95 time_t __tx39timer_rtc2sec(struct txtime *);
149 struct txtime t0, t1;
193 __tx39timer_rtcget(struct txtime *t)
297 struct txtime t;
  /src/sys/dev/ic/
athn.c 1886 int txtime; local in function:athn_txtime
1890 txtime = divround(8 + 4 * len + 3, athn_rates[ridx].rate);
1892 txtime = 16 + 4 + 4 * txtime + 16;
1894 txtime = divround(16 * len, athn_rates[ridx].rate);
1896 txtime += 72 + 24;
1898 txtime += 144 + 48;
1899 txtime += 10; /* 10us SIFS. */
1901 return txtime;
rt2661.c 1384 uint16_t txtime; local in function:rt2661_txtime
1388 txtime = (8 + 4 * len + 3 + rate - 1) / rate;
1389 txtime = 16 + 4 + 4 * txtime + 6;
1392 txtime = (16 * len + rate - 1) / rate;
1394 txtime += 72 + 24;
1396 txtime += 144 + 48;
1398 return txtime;
rt2560.c 1629 uint16_t txtime; local in function:rt2560_txtime
1633 txtime = (8 + 4 * len + 3 + rate - 1) / rate;
1634 txtime = 16 + 4 + 4 * txtime + 6;
1637 txtime = (16 * len + rate - 1) / rate;
1639 txtime += 72 + 24;
1641 txtime += 144 + 48;
1643 return txtime;
bwi.c 9572 uint16_t txtime; local in function:bwi_ieee80211_txtime
9585 txtime = IEEE80211_OFDM_TXTIME(rate, len);
9587 txtime += IEEE80211_OFDM_SIGNAL_EXT_TIME;
9595 txtime = IEEE80211_CCK_TXTIME(rate, len);
9601 txtime += IEEE80211_CCK_SHPREAMBLE_LEN +
9604 txtime += IEEE80211_CCK_PREAMBLE_LEN +
9608 return (txtime);
  /src/sys/dev/usb/
if_rum.c 980 uint16_t txtime; local in function:rum_txtime
984 txtime = (8 + 4 * len + 3 + rate - 1) / rate;
985 txtime = 16 + 4 + 4 * txtime + 6;
988 txtime = (16 * len + rate - 1) / rate;
990 txtime += 72 + 24;
992 txtime += 144 + 48;
994 return txtime;
if_ural.c 1037 uint16_t txtime; local in function:ural_txtime
1041 txtime = (8 + 4 * len + 3 + rate - 1) / rate;
1042 txtime = 16 + 4 + 4 * txtime + 6;
1045 txtime = (16 * len + rate - 1) / rate;
1047 txtime += 72 + 24;
1049 txtime += 144 + 48;
1051 return txtime;

Completed in 131 milliseconds