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

1 2 3 4 5

  /external/webrtc/webrtc/modules/audio_processing/
splitting_filter.cc 34 IFChannelBuffer* bands) {
35 RTC_DCHECK_EQ(num_bands_, bands->num_bands());
36 RTC_DCHECK_EQ(data->num_channels(), bands->num_channels());
38 bands->num_frames_per_band() * bands->num_bands());
39 if (bands->num_bands() == 2) {
40 TwoBandsAnalysis(data, bands);
41 } else if (bands->num_bands() == 3) {
42 ThreeBandsAnalysis(data, bands);
46 void SplittingFilter::Synthesis(const IFChannelBuffer* bands,
    [all...]
splitting_filter.h 40 // bands. The number of channels needs to be provided at construction time.
42 // For each block, Analysis() is called to split into bands and then Synthesis()
43 // to merge these bands again. The input and output signals are contained in
44 // IFChannelBuffers and for the different bands an array of IFChannelBuffers is
50 void Analysis(const IFChannelBuffer* data, IFChannelBuffer* bands);
51 void Synthesis(const IFChannelBuffer* bands, IFChannelBuffer* data);
55 void TwoBandsAnalysis(const IFChannelBuffer* data, IFChannelBuffer* bands);
56 void TwoBandsSynthesis(const IFChannelBuffer* bands, IFChannelBuffer* data);
57 void ThreeBandsAnalysis(const IFChannelBuffer* data, IFChannelBuffer* bands);
58 void ThreeBandsSynthesis(const IFChannelBuffer* bands, IFChannelBuffer* data)
    [all...]
splitting_filter_unittest.cc 30 // Splits into 3 bands and checks their presence or absence.
31 // Recombines the bands.
46 IFChannelBuffer bands(kSamplesPer48kHzChannel, kChannels, kNumBands);
64 splitting_filter.Analysis(&in_data, &bands);
70 energy[j] += bands.fbuf_const()->channels(j)[0][k] *
71 bands.fbuf_const()->channels(j)[0][k];
81 splitting_filter.Synthesis(&bands, &out_data);
audio_buffer.cc 202 split_data_->ibuf_const()->bands(channel) :
203 data_->ibuf_const()->bands(channel);
209 split_data_->ibuf()->bands(channel) :
210 data_->ibuf()->bands(channel);
259 split_data_->fbuf_const()->bands(channel) :
260 data_->fbuf_const()->bands(channel);
266 split_data_->fbuf()->bands(channel) :
267 data_->fbuf()->bands(channel);
  /hardware/libhardware/modules/radio/
radio_hal_tool.c 45 "Bands: %d\n\n",
57 hal_properties.bands[i].type,
58 hal_properties.bands[i].antenna_connected,
59 hal_properties.bands[i].lower_limit,
60 hal_properties.bands[i].upper_limit,
61 hal_properties.bands[i].num_spacings);
88 hal_properties.bands[band_number].type,
89 hal_properties.bands[band_number].antenna_connected,
90 hal_properties.bands[band_number].lower_limit,
91 hal_properties.bands[band_number].upper_limit
    [all...]
  /external/opencv3/3rdparty/libjasper/
jpc_tsfb.c 86 int xstart, int ystart, int xend, int yend, jpc_tsfb_band_t **bands,
179 jpc_tsfb_band_t *bands)
183 band = bands;
201 return band - bands;
205 int xstart, int ystart, int xend, int yend, jpc_tsfb_band_t **bands,
222 newxend, newyend, bands, numlvls - 1);
224 band = *bands;
237 ++(*bands);
239 band = *bands;
252 ++(*bands);
    [all...]
jpc_tsfb.h 136 jpc_tsfb_band_t *bands);
jpc_t2enc.c 217 endbands = &lvl->bands[lvl->numbands];
218 for (band = lvl->bands; band != endbands; ++band) {
344 endbands = &lvl->bands[lvl->numbands];
345 for (band = lvl->bands; band != endbands; ++band) {
410 if (!lvl->bands) {
413 endbands = &lvl->bands[lvl->numbands];
414 for (band = lvl->bands; band != endbands; ++band) {
458 if (!lvl->bands) {
461 endbands = &lvl->bands[lvl->numbands];
462 for (band = lvl->bands; band != endbands; ++band)
    [all...]
jpc_enc.c 133 static void band_destroy(jpc_enc_band_t *bands);
    [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 74 fprintf(f, "bands %u/%u ", qopt->bands, qopt->max_bands);
  /external/libopus/
celt_sources.mk 1 CELT_SOURCES = celt/bands.c \
celt_headers.mk 3 celt/bands.h \
  /external/autotest/server/site_tests/network_WiFi_RateControl/
network_WiFi_RateControl.py 63 bands = [band for band in phy.bands if frequency in band.frequencies]
64 if len(bands) != 1:
67 'such bands.' % len(bands))
70 possible_indices = filter(lambda x: x != 32, bands[0].mcs_indices)
  /external/libnl/src/
disabled-nl-qdisc-add.c 78 int i, err, bands; local
82 if (argc < 2 || strcasecmp(argv[0], "bands"))
85 bands = strtoul(argv[1], NULL, 0);
86 err = rtnl_qdisc_prio_set_bands(qdisc, bands);
121 fprintf(stderr, "Usage: ... prio bands <nbands> map MAP\n"
  /external/webrtc/webrtc/common_audio/
channel_buffer.h 24 // bands, with access to a pointer arrays of the deinterleaved channels and
25 // bands. The buffer is zero initialized at creation.
27 // The buffer structure is showed below for a 2 channel and 2 bands case:
86 // Returns a pointer array to the bands for a specific channel.
88 // bands(channel)[band][sample].
93 const T* const* bands(size_t channel) const { function in class:webrtc::ChannelBuffer
98 T* const* bands(size_t channel) { function in class:webrtc::ChannelBuffer
100 return const_cast<T* const*>(t->bands(channel));
  /system/core/include/system/
radio.h 144 radio_hal_band_config_t bands[RADIO_NUM_BANDS_MAX]; /* band descriptors */ member in struct:radio_hal_properties
160 radio_band_config_t bands[RADIO_NUM_BANDS_MAX]; member in struct:radio_properties
  /external/libnl/lib/route/sch/
prio.c 19 * // Specify the maximal number of bands to be used for this PRIO qdisc.
68 prio->qp_bands = opt->bands;
85 nl_dump(p, " bands %u", prio->qp_bands);
135 opts.bands = prio->qp_bands;
158 * Set number of bands of PRIO qdisc.
160 * @arg bands New number of bands.
163 int rtnl_qdisc_prio_set_bands(struct rtnl_qdisc *qdisc, int bands)
171 prio->qp_bands = bands;
178 * Get number of bands of PRIO qdisc
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_dev_attr.h 32 int wps_process_rf_bands(struct wps_device_data *dev, const u8 *bands);
  /packages/apps/Settings/src/com/android/settings/
BandMode.java 157 int bands[] = (int[])result.result; local
159 if(bands.length == 0) {
164 int size = bands[0];
168 item = new BandListItem(bands[i]);
  /system/connectivity/shill/cellular/
mm1_modem_proxy_interface.h 69 virtual void SetCurrentBands(const std::vector<uint32_t>& bands,
mock_mm1_modem_proxy.h 66 MOCK_METHOD4(SetCurrentBands, void(const std::vector<uint32_t>& bands,
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/widget/multiwaveview/
PointCloud.java 144 final int bands = (int) Math.round(pointAreaRadius / ds); local
145 final float dr = pointAreaRadius / bands;
147 for (int b = 0; b <= bands; b++, r += dr) {
  /external/libvorbis/lib/
envelope.c 93 envelope_band *bands,
168 for(i=0;i<bands[j].end;i++)
169 acc+=vec[i+bands[j].begin]*bands[j].window[i];
171 acc*=bands[j].total;

Completed in 324 milliseconds

1 2 3 4 5