/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/ |
mrc.h | 24 #define NUM_CHANNELS 1 // number of channels
64 uint32_t rcvn[NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
65 uint32_t rdqs[NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
66 uint32_t wdqs[NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
67 uint32_t wdq [NUM_CHANNELS][NUM_RANKS][NUM_BYTE_LANES];
68 uint32_t vref[NUM_CHANNELS][NUM_BYTE_LANES];
69 uint32_t wctl[NUM_CHANNELS][NUM_RANKS];
70 uint32_t wcmd[NUM_CHANNELS];
146 uint32_t channel_size[NUM_CHANNELS];
147 uint32_t column_bits[NUM_CHANNELS];
[all...] |
/external/adhd/cras/src/common/ |
cras_audio_format.c | 36 size_t num_channels) 47 fmt->num_channels = num_channels; 49 /* Set a default working channel layout according to num_channels. 53 fmt->channel_layout[i] = (i < num_channels) ? i : -1; 67 if (layout[i] >= (int)format->num_channels) 117 if (in->channel_layout[i] >= (int)in->num_channels || 118 out->channel_layout[i] >= (int)out->num_channels) { 125 mtx = cras_channel_conv_matrix_alloc(in->num_channels, 126 out->num_channels); [all...] |
/external/webrtc/webrtc/modules/audio_processing/test/ |
test_utils.cc | 40 RTC_CHECK_EQ(file_->num_channels(), buffer->num_channels()); 48 Deinterleave(&interleaved_[0], buffer->num_frames(), buffer->num_channels(), 57 RTC_CHECK_EQ(file_->num_channels(), buffer.num_channels()); 59 Interleave(buffer.channels(), buffer.num_frames(), buffer.num_channels(), 79 size_t num_channels, 82 size_t length = num_channels * samples_per_channel; 84 Interleave(data, samples_per_channel, num_channels, buffer.get()); 119 AudioProcessing::ChannelLayout LayoutFromChannels(size_t num_channels) { [all...] |
test_utils.h | 82 size_t num_channels, 96 size_t num_channels, 100 frame->num_channels_ = num_channels; 101 cb->reset(new ChannelBuffer<T>(frame->samples_per_channel_, num_channels)); 104 AudioProcessing::ChannelLayout LayoutFromChannels(size_t num_channels);
|
/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
nonlinear_beamformer_test.cc | 48 const size_t num_mics = in_file.num_channels(); 57 FLAGS_i.c_str(), in_file.num_channels(), in_file.sample_rate()); 59 FLAGS_o.c_str(), out_file.num_channels(), out_file.sample_rate()); 63 in_file.num_channels()); 66 out_file.num_channels()); 73 in_buf.num_channels(), in_buf.channels()); 78 out_buf.num_channels(), &interleaved[0]);
|
/external/webrtc/webrtc/common_audio/ |
wav_header.h | 35 bool CheckWavParameters(size_t num_channels, 46 size_t num_channels, 56 size_t* num_channels,
|
channel_buffer.h | 43 size_t num_channels, 45 : data_(new T[num_frames * num_channels]()), 46 channels_(new T*[num_channels * num_bands]), 47 bands_(new T*[num_channels * num_bands]), 50 num_channels_(num_channels), 118 size_t num_channels() const { return num_channels_; } function in class:webrtc::ChannelBuffer 145 IFChannelBuffer(size_t num_frames, size_t num_channels, size_t num_bands = 1); 154 size_t num_channels() const { return ibuf_.num_channels(); } function in class:webrtc::IFChannelBuffer
|
audio_util.cc | 45 int num_channels, 48 num_channels, deinterleaved);
|
wav_file.h | 30 virtual size_t num_channels() const = 0; 42 WavWriter(const std::string& filename, int sample_rate, size_t num_channels); 54 size_t num_channels() const override { return num_channels_; } 82 size_t num_channels() const override { return num_channels_; } 105 size_t num_channels);
|
blocker.cc | 25 size_t num_channels, 28 for (size_t i = 0; i < num_channels; ++i) { 40 size_t num_channels, 43 for (size_t i = 0; i < num_channels; ++i) { 54 size_t num_channels, 57 for (size_t i = 0; i < num_channels; ++i) { 67 size_t num_channels) { 68 for (size_t i = 0; i < num_channels; ++i) { 78 size_t num_channels, 80 for (size_t i = 0; i < num_channels; ++i) [all...] |
audio_converter_unittest.cc | 29 const size_t num_channels = data.size(); local 30 ScopedBuffer sb(new ChannelBuffer<float>(frames, num_channels)); 31 for (size_t i = 0; i < num_channels; ++i) 39 EXPECT_EQ(ref.num_channels(), test.num_channels()); 60 for (size_t i = 0; i < ref.num_channels(); ++i) { 69 const size_t length = ref.num_channels() * (ref.num_frames() - delay);
|
wav_file.cc | 43 s << "Sample rate: " << sample_rate() << " Hz, Channels: " << num_channels() 45 << (1.f * num_samples()) / (num_channels() * sample_rate()) << " s"; 102 size_t num_channels) 104 num_channels_(num_channels), 156 size_t num_channels) { 158 new webrtc::WavWriter(filename, sample_rate, num_channels)); 176 return reinterpret_cast<const webrtc::WavWriter*>(wf)->num_channels();
|
/external/adhd/cras/src/server/ |
cras_audio_area.h | 30 * num_channels - The number of channels in the audio area. 35 unsigned int num_channels; member in struct:cras_audio_area 55 * num_channels - The number of channels in the audio area. 57 struct cras_audio_area *cras_audio_area_create(int num_channels);
|
linear_resampler.c | 12 * num_channels - The number of channles in once frames. 21 unsigned int num_channels; member in struct:linear_resampler 30 struct linear_resampler *linear_resampler_create(unsigned int num_channels, 40 lr->num_channels = num_channels; 151 for (ch = 0; ch < lr->num_channels; ch++) 154 for (ch = 0; ch < lr->num_channels; ch++) { 156 (in[lr->num_channels + ch] - in[ch]);
|
/external/autotest/server/brillo/feedback/ |
closed_loop_audio_client.py | 152 num_channels=_DEFAULT_NUM_CHANNELS, 158 @num_channels: Number of channels to record at. 161 self.num_channels = num_channels 170 (num_channels, duration_secs, sample_rate, sample_width, 191 num_channels=self.num_channels, 226 num_channels=self.num_channels, 276 num_channels=_DEFAULT_NUM_CHANNELS [all...] |
/external/tensorflow/tensorflow/contrib/gan/python/eval/python/ |
eval_utils_impl.py | 34 def image_grid(input_tensor, grid_shape, image_shape=(32, 32), num_channels=3): 39 ([batch size, height, width, num_channels]) or flattened 40 ([batch size, height * width * num_channels]). 45 num_channels: int. The number of channels in an image. 59 num_features = image_shape[0] * image_shape[1] * num_channels 66 int(input_tensor.shape[3]) != num_channels): 73 input_tensor, tuple(grid_shape) + tuple(image_shape) + (num_channels,)) 76 input_tensor, [grid_shape[0], width, image_shape[0], num_channels]) 79 input_tensor, [1, height, width, num_channels])
|
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/ |
audio_decoder_opus.cc | 17 AudioDecoderOpus::AudioDecoderOpus(size_t num_channels) 18 : channels_(num_channels) { 19 RTC_DCHECK(num_channels == 1 || num_channels == 2);
|
/hardware/broadcom/wlan/bcmdhd/wifi_hal/ |
link_layer_stats.cpp | 58 uint32_t num_channels; member in struct:__anon47072 109 if (radio_stat->num_channels > 11) { 110 ALOGE("Incorrect number of channels = %d", radio_stat->num_channels); 111 // dump data before num_channels 126 + radio_stat->num_channels * sizeof(wifi_channel_stat)); 136 uint32_t channel_size = internal_stat_ptr->num_channels * sizeof(wifi_channel_stat); 152 external_stat_ptr->num_channels = internal_stat_ptr->num_channels; 153 if (internal_stat_ptr->num_channels) {
|
/external/libxaac/decoder/drc_src/ |
impd_drc_peak_limiter.h | 32 UWORD32 num_channels; member in struct:ia_drc_peak_limiter_struct 47 FLOAT32 limit_threshold, UWORD32 num_channels,
|
/external/webrtc/webrtc/voice_engine/ |
utility.h | 39 // |samples_per_channel|, |num_channels| and |sample_rate_hz| of the data as 43 size_t num_channels,
|
/external/autotest/server/brillo/ |
audio_utils.py | 67 def check_wav_file(filename, num_channels=None, sample_rate=None, 72 @param num_channels: Number of channels to expect (None to not check). 84 if num_channels is not None and chk_file.getnchannels() != num_channels: 86 num_channels, chk_file.getnchannels()) 106 def generate_sine_file(host, num_channels, sample_rate, sample_width, 112 @param num_channels: Number of channels to use. 129 'vol 0.9' % (num_channels, byte_format, 174 def _compare_frames(reference_file_frames, rec_file_frames, num_channels, 192 @param num_channels: Number of channels in the files [all...] |
/external/tensorflow/tensorflow/core/kernels/ |
summary_audio_op.cc | 59 const int64 num_channels = variable 74 sa->set_num_channels(num_channels); 79 tensor.shaped<float, 3>({batch_size, length_frames, num_channels}); 82 Eigen::DSizes<Eigen::DenseIndex, 2>(length_frames, num_channels)); 89 channels_by_frames.data(), sample_rate_truncated, num_channels,
|
/device/generic/goldfish/camera/fake-pipeline2/ |
Scene.cpp | 31 #define G (Scene::GRASS * Scene::NUM_CHANNELS) 32 #define S (Scene::GRASS_SHADOW * Scene::NUM_CHANNELS) 33 #define H (Scene::HILL * Scene::NUM_CHANNELS) 34 #define W (Scene::WALL * Scene::NUM_CHANNELS) 35 #define R (Scene::ROOF * Scene::NUM_CHANNELS) 36 #define D (Scene::DOOR * Scene::NUM_CHANNELS) 37 #define C (Scene::CHIMNEY * Scene::NUM_CHANNELS) 38 #define I (Scene::WINDOW * Scene::NUM_CHANNELS) 39 #define U (Scene::SUN * Scene::NUM_CHANNELS) 40 #define K (Scene::SKY * Scene::NUM_CHANNELS) [all...] |
/device/google/cuttlefish_common/guest/hals/camera/fake-pipeline2/ |
Scene.cpp | 31 #define G (Scene::GRASS * Scene::NUM_CHANNELS) 32 #define S (Scene::GRASS_SHADOW * Scene::NUM_CHANNELS) 33 #define H (Scene::HILL * Scene::NUM_CHANNELS) 34 #define W (Scene::WALL * Scene::NUM_CHANNELS) 35 #define R (Scene::ROOF * Scene::NUM_CHANNELS) 36 #define D (Scene::DOOR * Scene::NUM_CHANNELS) 37 #define C (Scene::CHIMNEY * Scene::NUM_CHANNELS) 38 #define I (Scene::WINDOW * Scene::NUM_CHANNELS) 39 #define U (Scene::SUN * Scene::NUM_CHANNELS) 40 #define K (Scene::SKY * Scene::NUM_CHANNELS) [all...] |
/system/extras/sound/ |
playwav.c | 115 uint16_t num_channels; member in struct:wav_header 117 uint32_t byte_rate; /* sample_rate * num_channels * bps / 8 */ 118 uint16_t block_align; /* num_channels * bps / 8 */ 168 hdr.num_channels, hdr.sample_rate, hdr.bits_per_sample, 187 play_file(hdr.sample_rate, hdr.num_channels, 209 hdr.num_channels = channels; 211 hdr.byte_rate = hdr.sample_rate * hdr.num_channels * 2; 212 hdr.block_align = hdr.num_channels * 2; 237 cfg.channel_count = hdr.num_channels;
|