/external/libopus/celt/ |
opus_custom_demo.c | 51 opus_int32 frame_size, channels, rate; local 64 fprintf (stderr, "Usage: test_opus_custom <rate> <channels> <frame size> " 71 channels = atoi(argv[2]); 104 enc = opus_custom_encoder_create(mode, channels, &err); 112 dec = opus_custom_decoder_create(mode, channels, &err); 128 in = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16)); 129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16)); 134 err = fread(in, sizeof(short), frame_size*channels, fin); 174 for (i=0;i<ret*channels;i++) 178 for (i=0;i<ret*channels;i++ [all...] |
/external/webrtc/webrtc/common_audio/ |
channel_buffer.h | 24 // bands, with access to a pointer arrays of the deinterleaved channels and 61 // Returns a pointer array to the full-band channels (or lower band channels). 63 // channels()[channel][sample]. 67 T* const* channels() { return channels(0); } function in class:webrtc::ChannelBuffer 68 const T* const* channels() const { return channels(0); } function in class:webrtc::ChannelBuffer 70 // Returns a pointer array to the channels for a specific band. 72 // channels(band)[channel][sample] 77 const T* const* channels(size_t band) const { function in class:webrtc::ChannelBuffer 81 T* const* channels(size_t band) { function in class:webrtc::ChannelBuffer [all...] |
audio_ring_buffer_unittest.cc | 70 input.channels()[i][j] = (i + 1) * (j + 1); 82 EXPECT_EQ(input.channels()[i][j], output.channels()[i][j]); 99 buf.Write(input.channels(), kNumChannels, kNumFrames); 103 buf.Read(output.channels(), kNumChannels, 1); 104 EXPECT_EQ(4, output.channels()[0][0]); 106 buf.Read(output.channels(), kNumChannels, 1); 107 EXPECT_EQ(2, output.channels()[0][0]);
|
channel_buffer.cc | 48 const int16_t* const* int_channels = ibuf_.channels(); 49 float* const* float_channels = fbuf_.channels(); 62 int16_t* const* int_channels = ibuf_.channels(); 63 const float* const* float_channels = fbuf_.channels();
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/ |
ChannelHelperTest.java | 52 * Compute a string representing the channels in a ScanSettings with a band set. 62 * Compute a string representing the channels in a ScanSettings with a list of channels set. 72 * Compute a string representing the channels in a BucketSettings with a band set. 82 * Compute a string representing the channels in a BucketSettings with a list of channels 137 * Verify adding channels from a WifiScanner.ScanSettings with channels 151 * Verify adding channels from a WifiScanner.ScanSettings with bands 164 * Verify adding channels from a WifiNative.BucketSetting with channel [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/ |
AppleLosslessSpecificBox.java | 19 8bit channels? 16bit ?? 32bit max coded frame size 32bit
28 private int channels; // 8bit
field in class:AppleLosslessSpecificBox 83 return channels;
86 public void setChannels(int channels) {
87 this.channels = channels;
132 channels = IsoTypeReader.readUInt8(content);
148 IsoTypeWriter.writeUInt8(byteBuffer, channels);
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
api_def_AdjustContrastv2.pbtxt | 27 interpreted as `[height, width, channels]`. The other dimensions only 28 represent a collection of images, such as `[batch, height, width, channels].`
|
api_def_EncodeWav.pbtxt | 6 2-D with shape `[length, channels]`. 28 `audio` is a 2-D float Tensor of shape `[length, channels]`.
|
api_def_QuantizedResizeBilinear.pbtxt | 6 4-D with shape `[batch, height, width, channels]`. 20 `[batch, new_height, new_width, channels]`.
|
api_def_ResizeBicubic.pbtxt | 6 4-D with shape `[batch, height, width, channels]`. 20 `[batch, new_height, new_width, channels]`.
|
api_def_ResizeBilinear.pbtxt | 6 4-D with shape `[batch, height, width, channels]`. 20 `[batch, new_height, new_width, channels]`.
|
api_def_ResizeNearestNeighbor.pbtxt | 6 4-D with shape `[batch, height, width, channels]`. 20 `[batch, new_height, new_width, channels]`.
|
api_def_ResizeNearestNeighborGrad.pbtxt | 7 4-D with shape `[batch, height, width, channels]`. 20 4-D with shape `[batch, orig_height, orig_width, channels]`. Gradients
|
api_def_DepthwiseConv2dNative.pbtxt | 21 [batch, height, width, channels]. 23 [batch, channels, height, width]. 43 `channel_multiplier` channels for each), then concatenates the results 44 together. Thus, the output has `in_channels * channel_multiplier` channels.
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
background_noise_unittest.cc | 20 size_t channels = 1; local 21 BackgroundNoise bgn(channels);
|
/external/webrtc/webrtc/modules/audio_processing/ |
splitting_filter.cc | 63 WebRtcSpl_AnalysisQMF(data->ibuf_const()->channels()[i], 65 bands->ibuf()->channels(0)[i], 66 bands->ibuf()->channels(1)[i], 76 WebRtcSpl_SynthesisQMF(bands->ibuf_const()->channels(0)[i], 77 bands->ibuf_const()->channels(1)[i], 79 data->ibuf()->channels()[i], 89 three_band_filter_banks_[i]->Analysis(data->fbuf_const()->channels()[i], 101 data->fbuf()->channels()[i]);
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
PipeTest.java | 17 package libcore.java.nio.channels; 20 import java.nio.channels.Pipe;
|
/cts/tests/tvprovider/src/android/tvprovider/cts/ |
TvProviderPerfTest.java | 29 import android.media.tv.TvContract.Channels; 74 mContentResolver.delete(Channels.CONTENT_URI, null, null); 93 values.put(Channels.COLUMN_INPUT_ID, mInputId); 94 values.put(Channels.COLUMN_SERVICE_TYPE, 95 Channels.SERVICE_TYPE_AUDIO_VIDEO); 96 values.put(Channels.COLUMN_TYPE, Channels.TYPE_OTHER); 98 ContentProviderOperation.newInsert(Channels.CONTENT_URI) 115 final String[] projection = { Channels._ID }; 116 try (final Cursor cursor = mContentResolver.query(Channels.CONTENT_URI [all...] |
/development/samples/browseable/BluetoothChat/ |
_index.jd | 12 (3) Establishing RFCOMM channels/sockets
|
/external/tensorflow/tensorflow/core/kernels/ |
maxpooling_op_gpu.cu.cc | 60 // const int output_size = batch * channels * pooled_height * pooled_width; 65 const int channels, const int height, 75 int c = (index / pooled_width / pooled_height) % channels; 76 int n = index / pooled_width / pooled_height / channels; 85 const dtype* bottom_data_n = bottom_data + n * channels * height * width; 106 // (so channels = outer_channels, output_size = real output size / 4). 109 const int width, const int channels, const int pooled_height, 118 int c = (index / pooled_width / pooled_height) % channels; 119 int n = index / pooled_width / pooled_height / channels; 127 const int32* bottom_data_n = bottom_data + n * channels * height * width [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/ |
audio_decoder_pcm.cc | 19 size_t AudioDecoderPcmU::Channels() const { 38 return static_cast<int>(encoded_len / Channels()); 43 size_t AudioDecoderPcmA::Channels() const { 62 return static_cast<int>(encoded_len / Channels());
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
input_audio_file.h | 44 // |channels| times to create an interleaved multi-channel signal where all 45 // channels are identical. The output |destination| must have the capacity to 46 // hold samples * channels elements. Note that |source| and |destination| can 49 size_t channels, int16_t* destination);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
MapModeTest.java | 17 package org.apache.harmony.tests.java.nio.channels; 19 import java.nio.channels.FileChannel; 29 * java.nio.channels.FileChannel.MapMode#PRIVATE,READONLY,READWRITE 45 * java.nio.channels.FileChannel.MapMode#toString()
|
/prebuilts/go/darwin-x86/test/chan/ |
zerosize.go | 7 // Test making channels of a zero-sized type.
|
/prebuilts/go/linux-x86/test/chan/ |
zerosize.go | 7 // Test making channels of a zero-sized type.
|