HomeSort by relevance Sort by last modified time
    Searched refs:band (Results 26 - 50 of 467) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelEffect.java 221 for (short band = 0; band < mEQNumBands; band++) {
222 mEQCenterFreq[band] = equalizerEffect.getCenterFreq(band);
230 for (short band = 0; band < mEQNumBands; band++) {
231 mEQPresetOpenSLESBandLevel[preset][band] = equalizerEffect
232 .getBandLevel(band);
593 final short band = (short) arg1; local
656 final short band = (short) arg1; local
693 final short band = (short) arg1; local
742 final short band = (short) arg1; local
    [all...]
  /external/aac/libAACdec/src/
rvlcconceal.cpp 116 int band,bnds,group,startBand; local
140 for (band=startBand; band >= 0; band--) {
141 bnds = 16*group+band;
191 int band,bnds,group,startBand; local
216 for (band=startBand; band < pRvlc->maxSfbTransmitted; band++) {
217 bnds = 16*group+band;
269 int band,bnds,startBand,endBand,group; local
405 int band,bnds,startBand,endBand,group; local
535 int band,bnds,group; local
643 int band,bnds,group; local
    [all...]
block.cpp 167 int band; local
178 for (band=0; band < ScaleFactorBandsTransmitted; band++)
180 switch (pCodeBook[group*16+band]) {
183 pScaleFactor[group*16+band] = 0;
191 pScaleFactor[group*16+band] = factor - 100;
198 pScaleFactor[group*16+band] = position - 100;
205 CPns_Read( &pAacDecoderChannelInfo->data.aac.PnsData, bs, hcb, pAacDecoderChannelInfo->pDynData->aScaleFactor, pAacDecoderChannelInfo->pDynData->RawDataInfo.GlobalGain, band, group);
216 int band; local
277 int top, band; local
427 int window, group, groupwin, band; local
507 int window,group,groupwin,groupoffset,band; local
    [all...]
  /hardware/interfaces/wifi/1.0/
IWifiApIface.hal 39 * for the provided band.
41 * @param band Band for which the frequency list is being generated.
49 * @return frequencies vector of valid frequencies for the provided band.
51 getValidFrequenciesForBand(WifiBand band)
  /external/autotest/server/cros/ap_configurators/
asus_qis_ap_configurator.py 50 return [{'band': ap_spec.BAND_2GHZ,
52 {'band': ap_spec.BAND_5GHZ,
57 return [{'band': ap_spec.BAND_2GHZ,
59 {'band': ap_spec.BAND_5GHZ,
63 def set_mode(self, mode, band=None):
66 self.add_item_to_command_list(self._set_mode, (mode, band), 1, 800)
69 def _set_mode(self, mode, band=None):
70 if band:
71 self._set_band(band)
110 def set_band(self, band)
    [all...]
netgear4500_ap_configurator.py 5 """Base class for NetgearWNDR dual band routers."""
13 """Base class for Netgear WNDR 4500 dual band routers."""
16 def _set_mode(self, mode, band=None):
edimax6475nd_ap_configurator.py 40 self.wait_for_object_by_xpath('//select[@name="band"]')
49 return [{'band': ap_spec.BAND_2GHZ, 'channels': range(1, 11)},
50 {'band': ap_spec.BAND_5GHZ,
55 def set_band(self, band):
56 if band == ap_spec.BAND_5GHZ:
58 elif band == ap_spec.BAND_2GHZ:
61 raise RuntimeError('Invalid band sent %s' % band)
65 return [{'band': ap_spec.BAND_2GHZ,
71 {'band': ap_spec.BAND_5GHZ
    [all...]
  /external/aac/libSBRdec/src/
sbrdec_drc.cpp 111 int band; local
117 for (band = 0; band < (64); band++) {
118 hDrcData->prevFact_mag[band] = FL2FXCONST_DBL(0.5f);
121 for (band = 0; band < SBRDEC_MAX_DRC_BANDS; band++) {
122 hDrcData->currFact_mag[band] = FL2FXCONST_DBL(0.5f);
123 hDrcData->nextFact_mag[band] = FL2FXCONST_DBL(0.5f)
202 int band, bottomMdct, topMdct, bin, useLP; local
    [all...]
psdec_hybrid.cpp 489 int k, band; local
503 QMF samples in the low-band buffer.
506 for(band = 0; band < hHybrid->nQmfBands; band++) {
508 /* get hybrid resolution per qmf band */
509 /* in case of baseline ps 10/20 band stereo mode : */
515 /* (split the 3 lower qmf band to 12 hybrid bands) */
517 hybridRes = (HYBRID_RES)hHybrid->pResolution[band];
519 FDKmemcpy(pWorkRealSlot, hHybrid->mQmfBufferRealSlot[band], hHybrid->qmfBufferMove * sizeof(FIXP_DBL))
628 int k, band; local
    [all...]
  /external/libopus/celt/
rate.h 53 static OPUS_INLINE int bits2pulses(const CELTMode *m, int band, int LM, int bits)
60 cache = m->cache.bits + m->cache.index[LM*m->nbEBands+band];
80 static OPUS_INLINE int pulses2bits(const CELTMode *m, int band, int LM, int pulses)
85 cache = m->cache.bits + m->cache.index[LM*m->nbEBands+band];
90 * band.
93 each band
95 @param pulses Number of pulses per band (returned)
  /packages/apps/Car/Stream/src/com/android/car/stream/radio/
RadioFormatter.java 46 * {@link RadioStation#getRadioBand()}. If the band is invalid or support for its formatting is
49 * @param band One of the band values specified in {@link RadioManager}. For example,
54 public static String formatRadioChannel(int band, int channelNumber) {
55 switch (band) {
69 * Formats the given band value into a readable String.
71 * @param band One of the band values specified in {@link RadioManager}. For example,
73 * @return The formatted string or an empty string if the band is invalid.
75 public static String formatRadioBand(Context context, int band) {
    [all...]
  /system/chre/util/include/chre/util/nanoapp/
wifi.h 55 * Parses a WiFi band into a string.
57 * @param band the CHRE WiFi band to parse into a string.
60 const char *parseChreWifiBand(uint8_t band);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/xc16x/
bit.s 7 band r0.1,r0.4 label
  /external/libvorbis/lib/
envelope.c 53 e->band[0].begin=2; e->band[0].end=4;
54 e->band[1].begin=4; e->band[1].end=5;
55 e->band[2].begin=6; e->band[2].end=6;
56 e->band[3].begin=9; e->band[3].end=8;
57 e->band[4].begin=13; e->band[4].end=8
    [all...]
  /external/aac/libSBRenc/src/
nf_est.cpp 128 INT i,band,env; local
144 for (band = 0; band < noNoiseBands; band++){
147 accu += fMultDiv2(smoothFilter[i], prevNoiseLevels[i][band]);
149 FDK_ASSERT( (band + env*noNoiseBands) < MAX_NUM_NOISE_VALUES);
150 NoiseLevels[band+ env*noNoiseBands] = accu<<1;
171 INT startChannel, /*!< Start channel of the current noise floor band.*/
172 INT stopChannel, /*!< Stop channel of the current noise floor band. */
178 INVF_MODE inverseFilteringLevel) /*!< Inverse filtering level of the current band.*
309 INT nNoiseEnvelopes, startPos[2], stopPos[2], env, band; local
    [all...]
  /system/chre/util/nanoapp/
wifi.cc 66 const char *parseChreWifiBand(uint8_t band) {
67 switch (band) {
  /hardware/qcom/audio/post_proc/
equalizer.c 85 int equalizer_get_band_level(equalizer_context_t *context, int32_t band)
87 ALOGV("%s: band: %d level: %d", __func__, band,
88 context->band_levels[band] * 100);
89 return context->band_levels[band] * 100;
92 int equalizer_set_band_level(equalizer_context_t *context, int32_t band,
95 ALOGV("%s: band: %d, level: %d", __func__, band, level);
101 context->band_levels[band] = level;
116 int equalizer_get_center_frequency(equalizer_context_t *context __unused, int32_t band)
378 int32_t band; local
    [all...]
  /external/iproute2/tc/
q_prio.c 60 unsigned band; local
66 if (get_unsigned(&band, *argv, 10)) {
70 if (band >= opt.bands) {
78 opt.priomap[idx++] = band;
q_rr.c 61 unsigned band; local
67 if (get_unsigned(&band, *argv, 10)) {
71 if (band > opt.bands) {
79 opt.priomap[idx++] = band;
  /hardware/interfaces/wifi/1.1/default/
wifi_ap_iface.cpp 69 WifiBand band, getValidFrequenciesForBand_cb hidl_status_cb) {
74 band);
93 WifiApIface::getValidFrequenciesForBandInternal(WifiBand band) {
99 hidl_struct_util::convertHidlWifiBandToLegacy(band));
  /platform_testing/libraries/app-helpers/auto/src/android/platform/test/helpers/auto/
AbstractAutoRadioHelper.java 97 * @param band - band to tune in.
99 public abstract void setStation(String stationType, double band);
104 * @return to get current playing station band with Am or Fm.
  /hardware/interfaces/broadcastradio/1.1/utils/
Utils.cpp 29 using V1_0::Band;
118 bool isAm(const Band band) {
119 return band == Band::AM || band == Band::AM_HD;
122 bool isFm(const Band band) {
123 return band == Band::FM || band == Band::FM_HD
    [all...]
  /hardware/interfaces/broadcastradio/1.1/utils/include/broadcastradio-utils/
Utils.h 51 bool isAm(const V1_0::Band band);
52 bool isFm(const V1_0::Band band);
70 ProgramSelector make_selector(V1_0::Band band, uint32_t channel, uint32_t subChannel = 0);
  /external/libvpx/libvpx/vp8/encoder/
tokenize.c 114 int band, rc, v, token; local
125 /* c = band for this case */
151 band = vp8_coef_bands[c];
158 t->context_tree = cpi->common.fc.coef_probs[1][band][pt];
162 ++x->coef_counts[1][band][pt][token];
168 band = vp8_coef_bands[c];
170 t->context_tree = cpi->common.fc.coef_probs[1][band][pt];
174 ++x->coef_counts[1][band][pt][DCT_EOB_TOKEN];
197 int band, rc, v; local
215 /* c = band for this case *
393 int type, band, pt, t; local
473 int band; local
    [all...]
  /packages/apps/Car/Radio/src/com/android/car/radio/
PrescannedRadioStationAdapter.java 50 * the first station displayed. A station is identified by the channel number and band.
55 public int setStartingStation(int channelNumber, int band) {
56 getIndexOrInsertForStation(channelNumber, band);
107 * given channel number and band. If the given combination does not exist within the list, then
112 public int getIndexOrInsertForStation(int channelNumber, int band) {
128 if (station.getChannelNumber() == channelNumber && station.getRadioBand() == band) {
137 band, null /* rds */);

Completed in 3977 milliseconds

12 3 4 5 6 7 8 91011>>