Searched refs:rate (Results 101 - 125 of 148) sorted by relevance

123456

/haiku/src/add-ons/kernel/drivers/audio/ac97/sis7018/
H A DMixer.cpp227 uint32 rate = 0;
228 if (!ac97_get_rate(fAC97Dev, AC97_PCM_FRONT_DAC_RATE, &rate)) {
231 if (rate == outputRate) {
232 TRACE("AC97 PCM Front DAC rate not set to %d\n", outputRate);
236 if (!ac97_set_rate(fAC97Dev, AC97_PCM_FRONT_DAC_RATE, rate))
237 ERROR("Failed to set AC97 PCM Front DAC rate\n");
239 TRACE("AC97 PCM Front DAC rate set to %d\n", outputRate);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_beacon.c280 u_int8_t rix, rate; local
320 * Calculate rate code.
321 * XXX everything at min xmit rate
325 rate = rt->info[rix].rateCode;
327 rate |= rt->info[rix].shortPreamble;
333 , rate, 1 /* series 0 rate/tries */
337 , 0 /* rts/cts rate */
342 * The EDMA HAL currently assumes that _all_ rate control
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/ral/
H A Drt2860.c1106 * rate is different from the requested rate. Note
1107 * that it works only because we do not allow rate
1473 int i, nsegs, ntxds, pad, rate, ridx, error; local
1495 rate = tp->mgmtrate;
1497 rate = tp->mcastrate;
1499 rate = tp->ucastrate;
1502 rate = ni->ni_txrate;
1504 rate &= IEEE80211_RATE_VAL;
1515 ridx = ieee80211_legacy_rate_lookup(ic->ic_rt, rate);
1747 int i, nsegs, ntxds, pad, rate, ridx, error; local
2265 uint8_t rate; local
[all...]
H A Drt2560reg.h250 uint8_t rate; member in struct:rt2560_rx_desc
H A Drt2661reg.h270 uint8_t rate; member in struct:rt2661_rx_desc
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/usb/wlan/
H A Dif_rumreg.h284 uint8_t rate; member in struct:rum_rx_desc
H A Dif_run.c99 RUN_DEBUG_RATE = 0x00000020, /* rate adaptation */
510 uint8_t rate; member in struct:rt2860_rate
1688 * Used to adjust per-rate Tx power registers.
1992 /* read Tx power compensation for each Tx rate */
2126 uint8_t rate, ridx; local
2143 rate = ic->ic_sup_rates[ic->ic_curmode].
2146 if (rt2860_rates[ridx].rate == rate)
2152 RUN_DPRINTF(sc, RUN_DEBUG_RATE, "rate=%d, fix_ridx=%d\n",
2153 rate, r
2777 uint8_t rate; local
3649 run_sendprot(struct run_softc *sc, const struct mbuf *m, struct ieee80211_node *ni, int prot, int rate) argument
3724 uint8_t rate; local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/ac97/geode/
H A Ddriver.h106 uint16 ac97_rate_reg; /* AC97 rate register */
129 uint32 rate; /* Samplerate */ member in struct:geode_stream
/haiku/src/kits/interface/
H A DInterfaceDefs.cpp471 // TODO: What about refresh rate ?
759 get_key_repeat_rate(int32 *rate) argument
767 err = reply.FindInt32("rate", rate);
770 *rate = 250000;
779 set_key_repeat_rate(int32 rate) argument
783 command.AddInt32("rate", rate);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_output.c645 ieee80211_validate_rate(struct ieee80211_node *ni, uint8_t rate) argument
649 if (IEEE80211_IS_HT_RATE(rate)) {
653 rate = IEEE80211_RV(rate);
654 if (rate <= 31) {
655 if (rate > ic->ic_txstream * 8 - 1)
661 if (rate == 32) {
676 if (rate > 38)
681 if (rate > 52)
687 if (rate > 7
3291 ieee80211_alloc_prot(struct ieee80211_node *ni, const struct mbuf *m, uint8_t rate, int prot) argument
[all...]
H A Dieee80211_node.c259 } else { /* legacy rate handling */
279 * Set/change the channel. The rate set is also updated as
297 * We must install the legacy rate est in ni_rates and the
298 * HT rate set in ni_htrates.
401 * Use a mixed 11b/11g basic rate set.
415 * Force pure 11b rate set.
440 * deauth'd) and reset the bss node (clears key, rate
486 uint8_t rate; local
505 rate = ieee80211_fix_rate(ni, &ni->ni_rates,
507 if (rate
526 uint8_t rate; local
[all...]
H A Dieee80211_ht.c325 int mword, rate; local
332 rate = ieee80211_htrates[index].ht20_rate_800ns;
335 rate = ieee80211_htrates[index].ht20_rate_400ns;
338 rate = ieee80211_htrates[index].ht40_rate_800ns;
341 rate = ieee80211_htrates[index].ht40_rate_400ns;
344 return (rate);
2103 * Install received HT rate set by parsing the HT cap ie.
2137 "WARNING, HT rate set too large; only "
2156 * Mark rates in a node's HT rate set as basic according
2173 "%s", "WARNING, empty HT rate se
[all...]
H A D_ieee80211.h46 IEEE80211_T_TURBO, /* high rate OFDM, aka turbo mode */
48 IEEE80211_T_OFDM_HALF, /* 1/2 rate OFDM */
49 IEEE80211_T_OFDM_QUARTER, /* 1/4 rate OFDM */
183 #define IEEE80211_CHAN_HALF 0x00004000 /* Half rate channel */
184 #define IEEE80211_CHAN_QUARTER 0x00008000 /* Quarter rate channel */
380 * 802.11 rate set.
407 * These can be used to set fixed transmit rate for all operating
414 uint8_t ucastrate; /* ucast data rate (legacy/MCS|0x80) */
415 uint8_t mgmtrate; /* mgmt frame rate (legacy/MCS|0x80) */
416 uint8_t mcastrate; /* multicast rate (legac
429 uint8_t rate; /* tx rate thresh (.5 Mb/s or MCS) */ member in struct:ieee80211_roamparam
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/
H A Dif_wpi.c1863 rate2plcp(const uint8_t rate) argument
1865 switch (rate) {
1902 /* Quickly determine if a given rate is CCK or OFDM. */
1903 #define WPI_RATE_IS_OFDM(rate) ((rate) >= 12 && (rate) != 22)
1936 " rate %x chan %d tstamp %ju\n", __func__, ring->cur,
2070 "qid %d idx %d retries %d btkillcnt %d rate %x duration %d "
2072 stat->btkillcnt, stat->rate, le32toh(stat->duration), status);
2086 * Update rate contro
2802 uint8_t tid, type, rate; local
2969 uint8_t ac, type, rate; local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Ddriver.h177 uint32 rate, bps; /* Samplerate & bits per sample */ member in struct:hda_stream
H A Dhda_controller.cpp156 uint32 rate; member in struct:__anon24
852 // Find out stream format and sample rate
870 stream->rate = kRates[index].rate;
884 stream->rate, stream->bps, format, stream->sample_format);
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dmulti.c745 data->input.rate = data->output.rate = B_SR_48000;
749 data->input.rate = data->output.rate = B_SR_44100;
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8335/dev/malo/
H A Dif_malohal.c629 * XXX preamble installed after set fixed rate cmd
849 malo_hal_set_rate(struct malo_hal *mh, uint16_t curmode, uint8_t rate) argument
873 if (rate != 0) {
874 /* fixed rate */
876 if (cmd->aprates[i] == rate) {
H A Dif_malo.h267 /* lower rate after the retry count. 0 = legacy, 1 = HT */
275 /* legacy rate(not index) or an MCS code. */
288 /* use fixed rate specified but firmware can drop to */
402 #define MALO_TXD_FORMAT 0x0001 /* frame format/rate */
403 #define MALO_TXD_FORMAT_LEGACY 0x0000 /* legacy rate frame */
404 #define MALO_TXD_RATE 0x01f8 /* tx rate (legacy)/ MCS */
436 uint8_t rate; /* received data rate */ member in struct:malo_rxdesc
539 malo_fixedrate: 1, /* use fixed tx rate */
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8363/dev/mwl/
H A Dif_mwl.c143 static uint16_t mwl_calcformat(uint8_t rate, const struct ieee80211_node *);
996 * Inform firmware of tx rate parameters.
1008 /* rate used to send management frames */
1010 /* rate used to send multicast frames */
1017 * Inform firmware of tx rate parameters. Called whenever
1031 * Update the h/w rate map.
1035 /* rate used to send management frames */
1037 /* rate used to send multicast frames */
1040 /* while here calculate EAPOL fixed rate cookie */
1049 * Setup a fixed xmit rate cooki
1057 uint8_t rate; local
3012 mwl_cvtlegacyrate(int rate) argument
3038 mwl_calcformat(uint8_t rate, const struct ieee80211_node *ni) argument
[all...]
/haiku/src/apps/codycam/
H A DCodyCam.cpp416 fFtpInfo.rate = 0x7fffffff;
525 fFtpInfo.rate = (bigtime_t)(B_INFINITE_TIMEOUT);
528 fFtpInfo.rate = (bigtime_t)(seconds * 1000000LL);
655 // capture rate
811 B_TRANSLATE("capture rate expected"),
812 "unrecognized capture rate specified");
/haiku/headers/private/audio/
H A Dhmulti_audio.h71 /* sample rate values */
89 /* continuously variable sample rate (typically board-generated) */
91 /* sample rate parameter global to all channels (input and output rates respectively) */
93 /* output sample rate locked to input sample rate (output_rates only; the common case!) */
333 float out_rate; /* what rate it's now playing at */
390 uint32 rate;
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwnreg.h800 uint32_t rate; member in struct:iwn_cmd_data
1406 uint32_t rate; member in struct:iwn4965_tx_stat
1418 uint32_t rate; member in struct:iwn5000_tx_stat
1473 uint32_t rate; member in struct:iwn_rx_stat
1475 * rate bit fields
1477 * High-throughput (HT) rate format for bits 7:0 (bit 8 must be "1"):
1493 * Legacy OFDM rate format for bits 7:0 (bit 8 must be "0", bit 9 "0"):
1503 * Legacy CCK rate format for bits 7:0 (bit 8 must be "0", bit 9 "1"):
2045 /* HW rate indices. */
/haiku/headers/os/interface/
H A DWindow.h134 void SetPulseRate(bigtime_t rate);
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_input.c2024 * private state. The rate set has been setup above;
2048 u_int8_t rate; local
2118 rate = ieee80211_setup_rates(ic, ni, rates, xrates,
2121 if (rate & IEEE80211_RATE_BASIC) {
2122 DPRINTF(("rate mismatch for %s\n",
2208 u_int8_t rate; local
2342 rate = ieee80211_setup_rates(ic, ni, rates, xrates,
2345 if (rate & IEEE80211_RATE_BASIC) {
2550 u_int8_t rate; local
2629 rate
[all...]

Completed in 521 milliseconds

123456