| /src/sys/dev/ic/ |
| athrate-sample.c | 104 * packets at bit-rates other than the current one to estimate when 108 * SampleRate reduces the number of bit-rates it must sample by 144 if (sn->rates[x].rate == rate) { 183 if (sn->rates[x].rate == 18) 227 /* rarely sample bit-rates that fail a lot */ 233 * for rates higher than 11 megabits 235 if (sn->rates[ndx].rate > 22 && ndx > current_ndx + 2) 239 if (sn->rates[ndx].rate == 18) 244 if (sn->rates[current_ndx].rate == 22 && ndx > current_ndx + 1) 283 * of other bit-rates to ath_sample_rate% of th [all...] |
| bwfmreg.h | 390 uint8_t rates[16]; member in struct:bwfm_bss_info 419 /* rates in 500kbps units w/hi bit set if basic */ 420 uint8_t rates[BWFM_MAXRATES_IN_SET]; member in struct:bwfm_sta_rateset_v5 429 /* rates in 500kbps units w/hi bit set if basic */ 430 uint8_t rates[BWFM_MAXRATES_IN_SET]; member in struct:bwfm_sta_rateset_v7 469 uint32_t count; /* # rates in this set */ 470 uint8_t rates[BWFM_MAXRATES_IN_SET]; /* rates in 500kbps units */ member in struct:bwfm_sta_info
|
| athrate-sample.h | 85 struct rate_info rates[IEEE80211_RATE_MAXSIZE]; member in struct:sample_node 214 * rates, and there is probably a way to get this from the
|
| bwfm.c | 2281 uint8_t rates[sizeof(bss->rates) + 2]; local 2300 rates[0] = 0; 2301 rates[1] = le32toh(bss->nrates); 2302 memcpy(&rates[2], bss->rates, sizeof(bss->rates)); 2315 scan.sp_rates = rates;
|
| /src/sys/dev/pckbport/ |
| pmsvar.h | 46 int rates[3]; member in struct:pms_protocol
|
| pms.c | 114 if (!p->rates[0]) 118 cmd[1] = p->rates[i];
|
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/broadcom/ |
| bcm911360_entphn.dts | 77 assigned-clock-rates = <525000000>, <300000000>;
|
| /src/sys/arch/arm/rockchip/ |
| rk_cru_arm.c | 74 if (arm->rates == NULL || rate == 0) 78 if (arm->rates[i].rate == rate) { 79 arm_rate = &arm->rates[i]; 190 if (arm->rates)
|
| rk3399_pmucru.c | 214 if (pll->rates == NULL || rate == 0) 218 if (pll->rates[i].rate == rate) { 219 pll_rate = &pll->rates[i]; 279 .u.pll.rates = (_rates), \
|
| rk_cru_pll.c | 167 if (pll->rates == NULL || rate == 0 || !HAS_GRF(sc)) 171 if (pll->rates[i].rate == rate) { 172 pll_rate = &pll->rates[i];
|
| rk_cru.h | 98 const struct rk_cru_pll_rate *rates; member in struct:rk_cru_pll 123 .u.pll.rates = (_rates), \ 179 const struct rk_cru_arm_rate *rates; member in struct:rk_cru_arm 204 .u.arm.rates = (_rates), \
|
| rk3399_cru.c | 286 if (pll->rates == NULL || rate == 0) 293 if (rate > pll->rates[i].rate) 294 diff = rate - pll->rates[i].rate; 296 diff = pll->rates[i].rate - rate; 298 pll_rate = &pll->rates[i]; 352 .u.pll.rates = (_rates), \
|
| /src/sys/dev/fdt/ |
| fdt_clock.c | 218 * Apply assigned clock parents and rates. 230 const u_int *rates = fdtbus_get_prop(phandle, "assigned-clock-rates", &rates_len); local 231 if (rates == NULL) 236 const u_int nrates = rates_len / sizeof(*rates); 259 const u_int rate = be32toh(rates[index]);
|
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/nxp/imx/ |
| imx7d-cl-som-imx7.dts | 50 assigned-clock-rates = <0>, <100000000>; 78 assigned-clock-rates = <0>, <100000000>; 213 assigned-clock-rates = <400000000>;
|
| /src/sys/external/mit/xen-include-public/dist/xen/include/public/io/ |
| sndif.h | 99 * /local/domain/1/device/vsnd/0/sample-rates = "8000,32000,44100,48000,96000" 133 * /local/domain/1/device/vsnd/0/1/sample-rates = "8000,32000,44100" 214 * o supported sample rates 235 * sample-rates 238 * List of supported sample rates separated by XENSND_LIST_SEPARATOR. 239 * Sample rates are expressed as a list of decimal values w/o any 502 #define XENSND_FIELD_SAMPLE_RATES "sample-rates" 840 * for sample rates becomes available (which might be the same set configured 898 } rates; member in struct:xensnd_query_hw_param
|
| /src/sys/net80211/ |
| ieee80211_input.c | 1051 ieee80211_setup_rates(struct ieee80211_node *ni, const u_int8_t *rates, 1059 rs->rs_nrates = rates[1]; 1060 memcpy(rs->rs_rates, rates + 2, rs->rs_nrates); 1077 " only using %u of %u rates\n", 2098 * [tlv] supported rates 2102 * [tlv] extended supported rates 2349 u_int8_t *ssid, *rates, *xrates; local 2372 * [tlv] supported rates 2373 * [tlv] extended supported rates 2375 ssid = rates = xrates = NULL 2537 u_int8_t *ssid, *rates, *xrates, *wpa, *wme; local 2780 u_int8_t *rates, *xrates, *wme; local [all...] |
| ieee80211_proto.c | 373 * Sort rates. 394 * Check against supported rates. 428 * Delete unacceptable rates. 508 static const int rates[] = { 2, 4, 11, 22, 12, 24, 48 }; local 511 if (rs->rs_nrates < N(rates)) 513 for (i = 0; i < N(rates); i++) { 516 if (rates[i] == r) 518 if (r > rates[i]) 530 * Mark the basic rates for the 11g rate table based on the 531 * operating mode. For real 11g we mark all the 11b rates [all...] |
| ieee80211.c | 445 * Add rate to the collection of all rates. 503 aprint_debug("%s: %s rates: ", ifp->if_xname, 1023 } rates[] = { local 1073 /* NB: hack, 11g matches both 11b+11a rates */ 1080 for (i = 0; i < N(rates); i++) 1081 if (rates[i].m == mask) 1082 return rates[i].r;
|
| ieee80211_proto.h | 64 const u_int8_t *rates, const u_int8_t *xrates, int flags);
|
| /src/sys/dev/usb/ |
| if_upgtvar.h | 120 uint8_t rates[20]; member in struct:upgt_fw_bra_descr 358 uint8_t rates[8]; member in struct:upgt_lmac_tx_desc
|
| /src/sys/external/isc/atheros_hal/dist/ |
| ah.c | 148 const HAL_RATE_TABLE *rates, uint32_t frameLen, uint16_t rateix, 154 kbps = rates->info[rateix].rateKbps; 159 switch (rates->info[rateix].phy) { 166 if (shortPreamble && rates->info[rateix].shortPreamble) 233 /* we still save OFDM rates in kbps - so double them */ 250 __func__, rates->info[rateix].phy, rateix); 424 * depends on whether they are marked as basic rates;
|
| /src/sys/dev/pci/ |
| if_ipwreg.h | 113 /* supported rates */ 279 u_int8_t rates; member in struct:ipw_node
|
| if_wpi.c | 355 /* set supported .11a, .11b and .11g rates */ 1593 /* CCK rates */ 1598 /* OFDM rates */ 1872 /* CCK rates (returned values are device-dependent) */ 1878 /* OFDM rates (cf IEEE Std 802.11a-1999, pp. 14 Table 80) */ 1889 /* unsupported rates (should not get there) */ 2460 /* CCK rates (not used with 802.11a) */ 2462 mrr.rates[i].flags = 0; 2463 mrr.rates[i].plcp = wpi_ridx_to_plcp[i]; 2465 mrr.rates[i].next = (i == WPI_CCK1) ? WPI_CCK1 : i - 1 [all...] |
| if_wpireg.h | 451 } __packed rates[WPI_CCK11 + 1]; member in struct:wpi_mrr_setup 531 } __packed rates[WPI_CCK11 + 1]; member in struct:wpi_cmd_txpower
|
| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/ |
| sun8i-a83t-bananapi-m3.dts | 104 assigned-clock-rates = <32768>;
|