HomeSort by relevance Sort by last modified time
    Searched full:bands (Results 1 - 25 of 266) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/iproute2/man/man8/
tc-pfifo_fast.8 22 queues side by side, where packets can be enqueued in any of the three bands
25 Not all three bands are dequeued simultaneously - as long as lower bands
26 have traffic, higher bands are never dequeued. This can be used to
37 for complete details on how TOS bits are translated into bands.
41 The length of the three bands depends on the interface txqueuelen, as
tc-prio.8 11 .B ] prio [ bands
12 bands
30 On creation with 'tc qdisc add', a fixed number of bands is created. Each
32 add', the number of bands to be created must instead be specified on the
65 bands
66 Number of bands. If changed from the default of 3,
76 bands. Mapping occurs based on the TOS octet of the packet, which looks like
178 Large amounts of traffic in the lower bands can cause starvation of higher
179 bands. Can be prevented by attaching a shaper (for example,
181 to these bands to make sure they cannot dominate the link
    [all...]
  /external/iproute2/tc/
q_prio.c 28 fprintf(stderr, "Usage: ... prio bands NUMBER priomap P1 P2...[multiqueue]\n");
40 if (strcmp(*argv, "bands") == 0) {
44 if (get_integer(&opt.bands, *argv, 10)) {
45 fprintf(stderr, "Illegal \"bands\"\n");
70 if (band > opt.bands) {
71 fprintf(stderr, "\"priomap\" element is out of bands\n");
109 fprintf(f, "bands %u priomap ", qopt->bands);
q_rr.c 28 fprintf(stderr, "Usage: ... rr bands NUMBER priomap P1 P2... [multiqueue]\n");
41 if (strcmp(*argv, "bands") == 0) {
45 if (get_integer(&opt.bands, *argv, 10)) {
46 fprintf(stderr, "Illegal \"bands\"\n");
71 if (band > opt.bands) {
72 fprintf(stderr, "\"priomap\" element is out of bands\n");
104 fprintf(f, "bands %u priomap ", qopt->bands);
q_multiq.c 75 fprintf(f, "bands %u/%u ", qopt->bands, qopt->max_bands);
  /external/chromium_org/third_party/opus/src/
celt_sources.mk 1 CELT_SOURCES = celt/bands.c \
celt_headers.mk 3 celt/bands.h \
  /external/chromium_org/third_party/opus/src/src/
opus_compare.c 156 /*Bands on which we compute the pseudo-NMR (Bark-derived
157 CELT bands).*/
158 static const int BANDS[NBANDS+1]={
254 band_energy(xb,X,BANDS,NBANDS,x,nchannels,nframes,
257 band_energy(NULL,Y,BANDS,ybands,y,nchannels,nframes,
297 for(xj=BANDS[bi];xj<BANDS[bi+1];xj++){
310 for(xj=BANDS[bi];xj<BANDS[bi+1];xj++){
331 300 Hz to allow for different transition bands
    [all...]
  /external/webrtc/src/common_audio/vad/
vad_filterbank.h 47 * different frequency bands
72 * different frequency bands
75 * - in_vector : Input signal to be split into two frequency bands.
98 * 6 frequency bands used by the VAD:
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
psy_configuration.h 33 Word16 sfbActive; /* number of sf bands containing energy after lowpass */
63 Word16 sfbActive; /* number of sf bands containing energy after lowpass */
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 118 UCHAR startFreq, /*!< Index to table of possible start bands */
170 UCHAR stopFreq, /*!< Index to table of possible start bands */
339 *numMaster = num_bands0 + num_bands1; /* Output nr of bands */
358 *numMaster = num_bands0; /* Output nr of bands */
365 /* FLOOR to get to few number of bands (next lower even number) */
405 *numMaster = num_bands0; /* Output nr of bands */
424 All SBR bands should span a constant frequency range in the logarithmic
481 \brief Calculate number of SBR bands between start and stop band
483 Given the number of bands per octave, this function calculates how many
484 bands fit in the given frequency range
    [all...]
env_extr.h 153 UCHAR nSfb[2]; /*!< Number of SBR-bands for low and high freq-resolution */
154 UCHAR nNfb; /*!< Actual number of noise bands to read from the bitstream*/
155 UCHAR numMaster; /*!< Number of SBR-bands in v_k_master */
159 UCHAR noLimiterBands; /*!< Number of limiter bands. */
160 UCHAR nInvfBands; /*!< Number of bands for inverse filtering */
163 /*!< Mapping of SBR bands to QMF bands for low frequency resolution */
165 /*!< Mapping of SBR bands to QMF bands for high frequency resolution */
167 /*!< Mapping of SBR noise bands to QMF bands *
    [all...]
lpp_tran.cpp 167 UCHAR nInvfBands, /*!< Number of bands for inverse filtering */
228 const int nInvfBands, /*!< Number of bands for inverse filtering */
279 Possible optimization: Clearing bands up to usb would be sufficient here. */
307 /* outer loop over bands to do analysis only once for each band */
713 } /* outer loop over bands (loBand) */
766 UCHAR *noiseBandTable, /*!< Mapping of SBR noise bands to QMF bands */
767 const int noNoiseBands, /*!< Number of noise bands */
843 UCHAR *noiseBandTable, /*!< Mapping of SBR noise bands to QMF bands */
    [all...]
  /external/aac/libFDK/include/
FDK_hybrid.h 123 INT nrBands; /*!< Number of QMF bands. */
124 INT cplxBands; /*!< Number of complex QMF bands.*/
125 UCHAR hfMode; /*!< Flag signalizes treatment of HF bands. */
140 INT nrBands; /*!< Number of QMF bands. */
141 INT cplxBands; /*!< Number of complex QMF bands.*/
176 * \param qmfBands Number of qmf bands to be processed.
177 * \param cplxBands Number of complex qmf bands to be processed.
241 * \param qmfBands Number of qmf bands to be processed.
242 * \param cplxBands Number of complex qmf bands to be processed.
qmf.h 204 int lsb, /*!< Number of lower bands */
205 int usb, /*!< Number of upper bands */
206 int no_channels, /*!< Number of critically sampled bands */
222 int lsb, /*!< Number of lower bands */
223 int usb, /*!< Number of upper bands */
224 int no_channels, /*!< Number of critically sampled bands */
  /frameworks/base/media/java/android/media/audiofx/
Equalizer.java 56 * Number of bands. Parameter ID for OnParameterChangeListener
101 * Number of bands implemented by Equalizer engine
176 * Gets the number of frequency bands supported by the Equalizer engine.
177 * @return the number of bands
213 * @param band frequency band that will have the new gain. The numbering of the bands starts
214 * from 0 and ends at (number of bands - 1).
235 * @param band frequency band whose gain is requested. The numbering of the bands starts
236 * from 0 and ends at (number of bands - 1).
257 * @param band frequency band whose center frequency is requested. The numbering of the bands
258 * starts from 0 and ends at (number of bands - 1)
    [all...]
  /external/aac/libAACenc/src/
psy_configuration.h 109 INT sfbCnt; /* number of existing sf bands */
110 INT sfbActive; /* number of sf bands containing energy after lowpass */
143 UCHAR sfbCnt; /* Number of scalefactor bands */
144 UCHAR sfbWidth[MAX_SFB_LONG]; /* Width of scalefactor bands for long blocks */
148 UCHAR sfbCnt; /* Number of scalefactor bands */
149 UCHAR sfbWidth[MAX_SFB_SHORT]; /* Width of scalefactor bands for short blocks */
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.cpp 336 startFreq SBR start frequency in QMF bands
337 stopFreq SBR start frequency in QMF bands
362 of target bands per octave (or lower the sampling frequency) */
383 return (1); /* Number of bands exceeds valid range of MAX_FREQ_COEFFS for fs=44.1kHz */
386 return (1); /* Number of bands exceeds valid range of MAX_FREQ_COEFFS for fs>=48kHz */
389 return (1);/*Number of bands exceeds valid range of MAX_FREQ_COEFFS */
392 return (1);/* Number of bands is negative */
458 if (diff0[0] == 0) /* too wide FB bands for target tuning */
461 of target bands per octave (or lower the sampling frequency */
476 *h_num_bands=num_bands0+num_bands1; /* Output nr of bands */
    [all...]
nf_est.h 104 INT freqBandTableQmf[MAX_NUM_NOISE_VALUES + 1]; /*!< Frequncy band table for the noise floor bands.*/
132 INT nSfb, /*!< Number of frequency bands. */
133 INT noiseBands, /*!< Number of noise bands per octave. */
142 INT nSfb); /*!< Number of bands in the frequency band table. */
  /external/wpa_supplicant_8/src/wps/
wps_dev_attr.h 31 int wps_process_rf_bands(struct wps_device_data *dev, const u8 *bands);
wps_dev_attr.c 223 wpa_printf(MSG_DEBUG, "WPS: * RF Bands (%x)", dev->rf_bands);
398 int wps_process_rf_bands(struct wps_device_data *dev, const u8 *bands)
400 if (bands == NULL) {
401 wpa_printf(MSG_DEBUG, "WPS: No RF Bands received");
405 dev->rf_bands = *bands;
406 wpa_printf(MSG_DEBUG, "WPS: Enrollee RF Bands 0x%x", dev->rf_bands);
  /external/kernel-headers/original/linux/
pkt_sched.h 6 /* Logical priority bands not depending on specific packet scheduler.
124 int bands; /* Number of bands */ member in struct:tc_prio_qopt
131 __u16 bands; /* Number of bands */ member in struct:tc_multiq_qopt
  /frameworks/av/media/libeffects/testlibs/
AudioEqualizer.h 27 // A parametric audio equalizer. Supports an arbitrary number of bands and
58 // nBands Number of bands required in the instance.
68 // nBands Number of bands. Must be >= 2.
138 // default value after reset). For the first and last bands, 0 is always
209 // Number of peaking filters. Total number of bands is +2.
230 // pMem Memory buffer for bands.
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
README.dygraph.txt 14 - Supports error bands around data series
  /system/media/audio_effects/include/audio_effects/
effect_equalizer.h 35 EQ_PARAM_NUM_BANDS, // Gets the number of frequency bands that the equalizer

Completed in 699 milliseconds

1 2 3 4 5 6 7 8 91011