Searched refs:rates (Results 1 - 25 of 30) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/net/80211/
H A Drc80211.c59 * for rates with less than 4 RX packets or 1 TX, as an indicator that
62 * In deciding which rates are best, we find the weighted average of
75 * sending AP in choosing rates, but we won't use rates for long that
235 dev->rates[dev->rate] / 10, dev->rates[rate_idx] / 10 );
334 dev->rctl, dev->rates[dev->rate] / 10,
335 dev->rates[dev->rate - 1] / 10,
354 for ( ridx = 0; ridx < dev->nr_rates && dev->rates[ridx] != rate;
H A Dnet80211.c398 * 802.11b supports rates of 1.0, 2.0, 5.5, and 11.0 Mbps; any other
508 hdr->duration = net80211_duration ( dev, 10, dev->rates[dev->rate] );
715 hdr->duration = net80211_duration ( dev, 10, dev->rates[dev->rate] );
1044 u16 old_rate = dev->rates[dev->rate];
1072 u8 rid = ie->rates[i];
1079 dev->rates[dev->nr_rates++] = rate;
1126 /* Allow only those rates that are also supported by
1134 if ( dev->hw->rates[band][j] == dev->rates[i] ){
1143 dev->rates[
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath5k/
H A Dath5k_phy.c1662 struct ath5k_rate_pcal_info *rates)
1713 rates->freq = target;
1715 rates->target_power_6to24 =
1721 rates->target_power_36 =
1727 rates->target_power_48 =
1733 rates->target_power_54 =
2407 * rates[0] - rates[7] -> OFDM rates
2408 * rates[
1660 ath5k_get_rate_pcal_data(struct ath5k_hw *ah, struct net80211_channel *channel, struct ath5k_rate_pcal_info *rates) argument
2417 u16 *rates; local
[all...]
H A Dath5k.c643 sc->hwinfo->rates[band][i] = ath5k_rates[i].bitrate;
658 sc->hwinfo->rates[band][i] = ath5k_rates[i].bitrate;
675 sc->hwinfo->rates[band][i] = ath5k_rates[i+4].bitrate;
1370 /* Set ack to be sent at low bit-rates */
1627 u16 rate = dev->rates[dev->rate];
1628 u16 slowrate = dev->rates[dev->rtscts_rate];
H A Dath5k_reset.c139 * index into rates for control rates, we can set it up like this because
153 * the hardware, based on current mode, for each rate. The rates which are
154 * capable of short preamble (802.11b rates 2Mbps, 5.5Mbps, and 11Mbps) have
159 * on both a and g modes. So all we have to do is set values for all g rates
160 * that include all OFDM and CCK rates. If we operate in turbo or xr/half/
176 rate = sc->hwinfo->rates[NET80211_BAND_2GHZ][i];
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dnet80211.h257 * irrelevant for 802.11g data rates, since they use a different
271 /** The maximum number of TX rates we allow to be configured simultaneously */
503 /** List of transmission rates supported by the card, indexed by band
508 u16 rates[NET80211_NR_BANDS][NET80211_MAX_RATES]; member in struct:net80211_hw_info
510 /** Number of supported rates, indexed by band */
814 /** A list of all possible TX rates we might use
818 u16 rates[NET80211_MAX_RATES]; member in struct:net80211_device
820 /** The number of transmission rates in the rates array */
823 /** The rate currently in use, as an index into the rates arra
[all...]
H A Dieee80211.h147 * ESSID, identify themselves by BSSID, supported transfer rates, RF
585 /** 802.11 rates information element
587 * The first 8 rates go in an IE of type RATES (1), and any more rates
595 u8 len; /**< Number of rates */
596 u8 rates[0]; /**< Rates data, one rate per byte */ member in struct:ieee80211_ie_rates
599 /** Information element ID for rates information element */
602 /** Information element ID for extended rates information element */
980 u8 rates[0]; /**< Rates data */ member in union:ieee80211_ie::__anon15738::__anon15739
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_recv.c383 if (sc->rates[i].hw_value == rx_stats->rs_rate) {
387 if (sc->rates[i].hw_value_short == rx_stats->rs_rate) {
508 rs.rs_rssi, sc->rates[rix].bitrate, rs.rs_rate);
511 sc->rates[rix].bitrate);
H A Dath9k_main.c716 u16 rate = dev->rates[dev->rate];
717 u16 slowrate = dev->rates[dev->rtscts_rate];
721 if (sc->rates[i].bitrate == rate &&
722 (sc->rates[i].flags & spmbl))
725 if (sc->rates[i].bitrate == slowrate &&
726 (sc->rates[i].flags & spmbl))
H A Dath9k_init.c312 memcpy(&sc->rates, ath9k_legacy_rates, sizeof(ath9k_legacy_rates));
320 sc->hwinfo->rates[NET80211_BAND_2GHZ][i] = ath9k_legacy_rates[i].bitrate;
330 sc->hwinfo->rates[NET80211_BAND_5GHZ][i - 4] = ath9k_legacy_rates[i].bitrate;
H A Dath9k.h476 struct ath9k_legacy_rate rates[NET80211_MAX_RATES]; member in struct:ath_softc
H A Dath9k_xmit.c439 rate = &sc->rates[sc->hw_rix];
458 /* legacy rates */
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/
H A Ddtrace.c1146 }, rates[] = { local
1157 for (i = 0; rates[i].name != NULL; i++) {
1158 if (dtrace_getopt(g_dtp, rates[i].optname, &rates[i].val) == -1)
1159 fatal("couldn't get option %s", rates[i].optname);
1192 for (i = 0; rates[i].name != NULL; i++) {
1196 if (rates[i].val == DTRACEOPT_UNSET)
1199 (void) dtrace_getopt(g_dtp, rates[i].optname, &nval);
1204 if (rates[i].val == nval)
1207 dir = nval > rates[
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/usr/
H A Diwmgmt.c71 dev->rates[dev->rate] / 10 );
/vbox/src/VBox/RDP/client-1.8.3/
H A Drdpsnd_oss.c320 uint32 rates[] = { 44100, 48000, 0 }; local
321 uint32 *prates = rates;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/rtl818x/
H A Drtl818x.c181 (dev->rates[dev->rate] * 2) / 10);
183 ((dev->rates[dev->rate] * 2) / 10);
571 rtl818x_rates[hw_rate] != dev->rates[dev->rate];
582 dev->rates[dev->rtscts_rate];
717 memcpy(hwinfo->rates[NET80211_BAND_2GHZ], rtl818x_rates,
/vbox/src/VBox/Additions/x11/x11include/libpciaccess-0.10.8/
H A Dpciaccess.h411 * Logical OR of the supported AGP rates. For example, a value of 0x07
415 uint8_t rates; member in struct:pci_agp_info
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dedid.h509 int rates; member in struct:cvt_timings
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dedid.h509 int rates; member in struct:cvt_timings
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dedid.h515 int rates; member in struct:cvt_timings
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dedid.h511 int rates; member in struct:cvt_timings
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dedid.h511 int rates; member in struct:cvt_timings
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dedid.h515 int rates; member in struct:cvt_timings
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dedid.h515 int rates; member in struct:cvt_timings
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dedid.h515 int rates; member in struct:cvt_timings

Completed in 204 milliseconds

12