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