/prebuilts/go/linux-x86/test/fixedbugs/ |
issue8336.go | 7 // Issue 8336. Order of evaluation of receive channels in select.
|
/system/media/audio_utils/include/audio_utils/ |
format.h | 72 * of at least as many channels as present in the dst_mask. 75 * \param idxary Updated array of indices of channels in the src frame for the dst frame 77 * \param dst_channel_mask Bit mask corresponding to destination channels present 78 * \param src_channel_mask Bit mask corresponding to source channels present
|
/external/tensorflow/tensorflow/core/kernels/ |
quantized_resize_bilinear_op.cc | 242 const int channels, const float min, 249 for (int c = 0; c < channels; ++c) { 256 output_y_ptr[x * channels + c] = val; 464 const int64 out_width, const int channels, 471 BuildLerpCache<float>(out_width, in_width, width_scale, channels, 0); 475 const int64 in_row_size = in_width * channels; 477 const int64 out_row_size = out_width * channels; 491 for (int c = 0; c < channels; ++c) { 499 output_y_ptr[x * channels + c] = val; 512 const int64 out_width, const int channels, 655 const int channels = images.dimension(3); local [all...] |
/external/libopus/include/ |
opus_custom.h | 135 * @param [in] channels <tt>int</tt>: Number of channels 140 int channels 153 * @param [in] channels <tt>int</tt>: Number of channels 159 int channels 170 * @param [in] channels <tt>int</tt>: Number of channels 176 int channels, 246 * @param [in] channels <tt>int</tt>: Number of channel [all...] |
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
rtp_payload_registry.cc | 43 const size_t channels, 90 channels, rate)) { 102 payload_name, payload_name_length, frequency, channels, rate); 106 payload_name, payload_type, frequency, channels, rate); 135 // There can't be several codecs with the same rate, frequency and channels 142 const size_t channels, 156 channels, rate)) { 174 const size_t channels, 195 // [default] audio, check freq and channels. 197 payload->typeSpecific.Audio.channels == channels) [all...] |
/frameworks/av/media/libstagefright/codecs/opus/dec/ |
SoftOpus.cpp | 38 // mappings for up to 8 channels. This information is part of the Vorbis I 178 opusParams->nChannels = mHeader->channels; 209 pcmParams->nChannels = mHeader->channels; 306 // stereo output: Opus streams with more than 2 channels require a stream map. 334 // - Byte 2: Starting at byte 2 are |header->channels| uint8 mapping 344 header->channels = *(data + kOpusHeaderChannelsOffset); 346 if (header->channels <= 0 || header->channels > kMaxChannels) { 347 ALOGV("Invalid Header, wrong channel count: %d", header->channels); 357 if (header->channels > kMaxChannelsWithDefaultLayout) [all...] |
/external/wpa_supplicant_8/src/ap/ |
dfs.c | 59 * time for CAC, so radar channels must be skipped when finding a new 86 * VHT80, valid channels based on center frequency: 91 * VHT160 valid channels based on center frequency: 112 wpa_printf(MSG_DEBUG, "Unknown width for %d channels", n_chans); 131 if (mode->channels[i].freq == freq) 132 return &mode->channels[i]; 149 first_chan = &mode->channels[first_chan_idx]; 193 wpa_printf(MSG_DEBUG, "DFS new chan checking %d channels", n_chans); 195 chan = &mode->channels[i]; 197 /* Skip HT40/VHT incompatible channels */ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/ |
volume.h | 45 * can store the volume of all channels at once. 78 * \li pa_cvolume_channels_equal_to() - Tests if all channels of a pa_cvolume 80 * \li pa_cvolume_is_muted() - Tests if all channels of a pa_cvolume 82 * \li pa_cvolume_is_norm() - Tests if all channels of a pa_cvolume structure 84 * \li pa_cvolume_set() - Set the first n channels of a pa_cvolume structure to 86 * \li pa_cvolume_reset() - Set the first n channels of a pa_cvolume structure 88 * \li pa_cvolume_mute() - Set the first n channels of a pa_cvolume structure 90 * \li pa_cvolume_avg() - Return the average volume of all channels. 136 uint8_t channels; /**< Number of channels */ member in struct:pa_cvolume [all...] |
/device/google/cuttlefish/shared/config/ |
media_profiles.xml | 42 <!ATTLIST Audio channels (1|2) #REQUIRED> 94 channels="1" /> 107 channels="1" /> 128 channels="1" /> 141 channels="1" /> 162 channels="1" /> 175 channels="1" /> 196 channels="1" /> 209 channels="1" /> 230 channels="1" / [all...] |
/device/google/cuttlefish_common/guest/hals/camera/ |
media_profiles.xml | 39 <!ATTLIST Audio channels (1|2) #REQUIRED> 91 channels="1" /> 104 channels="1" /> 125 channels="1" /> 138 channels="1" /> 159 channels="1" /> 172 channels="1" /> 193 channels="1" /> 206 channels="1" /> 227 channels="1" / [all...] |
/external/tinyalsa/ |
tinycap.c | 63 unsigned int channels, unsigned int rate, 78 unsigned int channels = 2; local 89 " [-c channels] [-r rate] [-b bits] [-p period_size]" 110 channels = atoi(*argv); 146 header.num_channels = channels; 166 header.byte_rate = (header.bits_per_sample / 8) * channels * rate; 167 header.block_align = channels * (header.bits_per_sample / 8); 194 unsigned int channels, unsigned int rate, 208 config.channels = channels; [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
normal.cc | 40 if (length % output->Channels() != 0) { 41 // The length does not match the number of channels. 63 AudioMultiVector expanded(output->Channels()); 67 for (size_t channel_ix = 0; channel_ix < output->Channels(); ++channel_ix) { 74 size_t length_per_channel = length / output->Channels(); 117 assert(channel_ix < output->Channels()); 137 assert(channel_ix < output->Channels()); 146 assert(output->Channels() == 1); // Not adapted for multi-channel yet. 182 size_t length_per_channel = length / output->Channels(); 184 for (size_t channel_ix = 0; channel_ix < output->Channels(); [all...] |
/hardware/google/av/media/codecs/opus/ |
C2SoftOpusDec.cpp | 198 // mappings for up to 8 channels. This information is part of the Vorbis I 209 // stereo output: Opus streams with more than 2 channels require a stream map. 237 // - Byte 2: Starting at byte 2 are |header->channels| uint8 mapping 247 header->channels = *(data + kOpusHeaderChannelsOffset); 248 if (header->channels <= 0 || header->channels > kMaxChannels) { 249 ALOGE("Invalid Header, wrong channel count: %d", header->channels); 263 if (header->channels > kMaxChannelsWithDefaultLayout) { 268 header->num_coupled = header->channels > 1; 273 if (data_size < kOpusHeaderStreamMapOffset + header->channels) { [all...] |
/prebuilts/misc/windows/sdl2/test/ |
testautomation_audio.c | 154 desired.channels = 2; 164 desired.channels = 2; 349 /* Definition of all formats, channels, and frequencies used to test audio conversions */ 378 spec1.channels = 2; 380 result = SDL_BuildAudioCVT(&cvt, spec1.format, spec1.channels, spec1.freq, 381 spec1.format, spec1.channels, spec1.freq); 387 spec1.channels = 1; 390 spec2.channels = 2; 392 result = SDL_BuildAudioCVT(&cvt, spec1.format, spec1.channels, spec1.freq, 393 spec2.format, spec2.channels, spec2.freq) [all...] |
/frameworks/base/services/core/java/com/android/server/notification/ |
RankingHelper.java | 193 // Clobber groups and channels with the xml, but don't delete other data that wasn't present 254 // Channels 268 r.channels.put(id, channel); 345 if (!r.channels.containsKey(NotificationChannel.DEFAULT_CHANNEL_ID)) { 356 r.channels.remove(NotificationChannel.DEFAULT_CHANNEL_ID); 360 if (r.channels.containsKey(NotificationChannel.DEFAULT_CHANNEL_ID)) { 361 r.channels.get(NotificationChannel.DEFAULT_CHANNEL_ID).setName( 388 r.channels.put(channel.getId(), channel); 409 || r.channels.size() > 0 435 for (NotificationChannel channel : r.channels.values()) 902 List<NotificationChannel> channels = new ArrayList<>(); local 1219 JSONArray channels = new JSONArray(); local 1298 JSONArray channels = new JSONArray(); local 1476 ArrayMap<String, NotificationChannel> channels = new ArrayMap<>(); field in class:RankingHelper.Record [all...] |
/bionic/libc/kernel/uapi/linux/hsi/ |
hsi_char.h | 44 __u32 channels; member in struct:hsc_rx_config 48 __u32 channels; member in struct:hsc_tx_config
|
/external/autotest/server/cros/ap_configurators/ |
linksyse1000_ap_configurator.py | 34 channels = ['Auto', '1', '2', '3', '4', '5', '6', '7', '8', 36 self.select_item_from_popup_by_xpath(channels[position], xpath)
|
linksyse1500_ap_configurator.py | 32 channels = ['Auto', '1', '2', '3', '4', '5', '6', '7', '8', 34 self.select_item_from_popup_by_xpath(channels[position], xpath)
|
/external/autotest/server/site_tests/network_WiFi_SimpleConnect/ |
control.wifi_check24HT20 | 17 on 2.4 GHz channels (20MHz channels only).
|
/external/brotli/java/org/brotli/wrapper/dec/ |
BrotliDecoderChannel.java | 11 import java.nio.channels.ClosedChannelException; 12 import java.nio.channels.ReadableByteChannel;
|
/external/libopus/src/ |
opus_demo.c | 47 fprintf(stderr, "Usage: %s [-e] <application> <sampling rate (Hz)> <channels (1/2)> " 49 fprintf(stderr, " %s -d <sampling rate (Hz)> <channels (1/2)> " 200 static OpusEncoder *ms_opus_encoder_create(opus_int32 Fs, int channels, int application, int *error) 204 return (OpusEncoder *)opus_multistream_surround_encoder_create(Fs, channels, 1, &streams, &coupled_streams, mapping, application, error); 206 static OpusDecoder *ms_opus_decoder_create(opus_int32 Fs, int channels, int *error) 212 coupled_streams = channels==2; 213 return (OpusDecoder *)opus_multistream_decoder_create(Fs, channels, streams, coupled_streams, mapping, error); 226 int frame_size, channels; local 323 channels = atoi(argv[args]); 326 if (channels < 1 || channels > 2 [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
Box.java | 24 import java.nio.channels.ReadableByteChannel; 25 import java.nio.channels.WritableByteChannel;
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
api_def_MaxPoolWithArgmax.pbtxt | 6 4-D with shape `[batch, height, width, channels]`. Input to pool over. 44 `((b * height + y) * width + x) * channels + c`.
|
api_def_RandomCrop.pbtxt | 6 3-D of shape `[height, width, channels]`. 18 3-D of shape `[crop_height, crop_width, channels].`
|
api_def_ResizeArea.pbtxt | 6 4-D with shape `[batch, height, width, channels]`. 20 `[batch, new_height, new_width, channels]`.
|