Home
last modified time | relevance | path

Searched refs:CHANNELS (Results 1 – 19 of 19) sorted by relevance

/external/libopus/doc/
Dtrivial_example.c41 #define CHANNELS 2 macro
54 opus_int16 in[FRAME_SIZE*CHANNELS]; in main()
55 opus_int16 out[MAX_FRAME_SIZE*CHANNELS]; in main()
71 encoder = opus_encoder_create(SAMPLE_RATE, CHANNELS, APPLICATION, &err); in main()
97 decoder = opus_decoder_create(SAMPLE_RATE, CHANNELS, &err); in main()
114 unsigned char pcm_bytes[MAX_FRAME_SIZE*CHANNELS*2]; in main()
118 fread(pcm_bytes, sizeof(short)*CHANNELS, FRAME_SIZE, fin); in main()
122 for (i=0;i<CHANNELS*FRAME_SIZE;i++) in main()
146 for(i=0;i<CHANNELS*frame_size;i++) in main()
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout); in main()
/external/tensorflow/tensorflow/contrib/layers/python/layers/
Drev_block_lib_test.py41 CHANNELS = 8 variable in RevBlockTest
48 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
51 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
54 [self.BATCH_SIZE, self.CHANNELS], dtype=dtypes.float32)
71 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
74 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
77 [self.BATCH_SIZE, self.CHANNELS], dtype=dtypes.float32)
102 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
107 return core_layers.dense(x, self.CHANNELS // 2, use_bias=True)
117 [self.BATCH_SIZE, self.CHANNELS], dtype=dtypes.float32)
[all …]
/external/libxaac/decoder/
Dixheaacd_aacdec.h36 ia_aac_dec_channel_info_struct *pstr_aac_dec_ch_info[CHANNELS];
38 ia_aac_dec_channel_info *ptr_aac_dec_static_channel_info[CHANNELS];
40 ia_aac_dec_overlap_info *pstr_aac_dec_overlap_info[CHANNELS];
55 ia_aac_dec_overlap_info str_aac_dec_overlap_info[CHANNELS];
60 ia_aac_dec_channel_info *ptr_aac_dec_static_channel_info[CHANNELS];
61 WORD16 *ltp_buf[CHANNELS];
Dixheaacd_defines.h42 #define CHANNELS 2 macro
Dixheaacd_channel.h51 ia_aac_dec_channel_info_struct *ptr_aac_dec_channel_info[CHANNELS]);
Dixheaacd_aacdecoder.c127 ia_aac_sfb_code_book_struct *ptr_aac_sfb_code_book_data[CHANNELS]; in ixheaacd_aacdec_decodeframe()
Dixheaacd_channel.c679 ia_aac_dec_channel_info_struct *ptr_aac_dec_channel_info[CHANNELS]) { in ixheaacd_map_ms_mask_pns() argument
/external/skia/src/sksl/
DSkSLJIT.h124 static constexpr int CHANNELS = 4;
222 LLVMValueRef out[CHANNELS]);
225 LLVMValueRef out[CHANNELS]);
228 LLVMValueRef out[CHANNELS]);
231 LLVMValueRef out[CHANNELS]);
234 LLVMValueRef out[CHANNELS]);
237 LLVMValueRef out[CHANNELS]);
239 bool getVectorLValue(LLVMBuilderRef builder, const Expression& e, LLVMValueRef out[CHANNELS]);
246 LLVMValueRef outLeft[CHANNELS], const Expression& right,
247 LLVMValueRef outRight[CHANNELS]);
[all …]
DSkSLJIT.cpp1396 LLVMValueRef out[CHANNELS]) { in getVectorLValue() argument
1406 LLVMValueRef base[CHANNELS]; in getVectorLValue()
1421 LLVMValueRef outLeft[CHANNELS], const Expression& right, in getVectorBinaryOperands() argument
1422 LLVMValueRef outRight[CHANNELS]) { in getVectorBinaryOperands() argument
1445 LLVMValueRef out[CHANNELS]) { in compileVectorBinary() argument
1446 LLVMValueRef left[CHANNELS]; in compileVectorBinary()
1447 LLVMValueRef right[CHANNELS]; in compileVectorBinary()
1505 LLVMValueRef out[CHANNELS]) { in compileVectorConstructor() argument
1511 LLVMValueRef base[CHANNELS]; in compileVectorConstructor()
1556 LLVMValueRef base[CHANNELS]; in compileVectorConstructor()
[all …]
/external/skqp/src/sksl/
DSkSLJIT.h124 static constexpr int CHANNELS = 4;
222 LLVMValueRef out[CHANNELS]);
225 LLVMValueRef out[CHANNELS]);
228 LLVMValueRef out[CHANNELS]);
231 LLVMValueRef out[CHANNELS]);
234 LLVMValueRef out[CHANNELS]);
237 LLVMValueRef out[CHANNELS]);
239 bool getVectorLValue(LLVMBuilderRef builder, const Expression& e, LLVMValueRef out[CHANNELS]);
246 LLVMValueRef outLeft[CHANNELS], const Expression& right,
247 LLVMValueRef outRight[CHANNELS]);
[all …]
DSkSLJIT.cpp1396 LLVMValueRef out[CHANNELS]) { in getVectorLValue() argument
1406 LLVMValueRef base[CHANNELS]; in getVectorLValue()
1421 LLVMValueRef outLeft[CHANNELS], const Expression& right, in getVectorBinaryOperands() argument
1422 LLVMValueRef outRight[CHANNELS]) { in getVectorBinaryOperands() argument
1445 LLVMValueRef out[CHANNELS]) { in compileVectorBinary() argument
1446 LLVMValueRef left[CHANNELS]; in compileVectorBinary()
1447 LLVMValueRef right[CHANNELS]; in compileVectorBinary()
1505 LLVMValueRef out[CHANNELS]) { in compileVectorConstructor() argument
1511 LLVMValueRef base[CHANNELS]; in compileVectorConstructor()
1556 LLVMValueRef base[CHANNELS]; in compileVectorConstructor()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dresize_bicubic_op_test.cc268 #define BM_ResizeBicubicDev(BATCH, SIZE, CHANNELS) \ argument
269 static void BM_ResizeBicubic##_##BATCH##_##SIZE##_##CHANNELS(int iters) { \
271 CHANNELS); \
272 test::Benchmark("cpu", ResizeBicubic(BATCH, SIZE, CHANNELS)).Run(iters); \
274 BENCHMARK(BM_ResizeBicubic##_##BATCH##_##SIZE##_##CHANNELS);
289 #define BM_ResizeBicubicExpand(BATCH, SIZE, CHANNELS) \ argument
290 static void BM_ResizeBicubicExpand##_##BATCH##_##SIZE##_##CHANNELS( \
293 CHANNELS * 8 * 8); \
294 test::Benchmark("cpu", ResizeBicubic(BATCH, SIZE, CHANNELS, 8, 8)) \
297 BENCHMARK(BM_ResizeBicubicExpand##_##BATCH##_##SIZE##_##CHANNELS);
/external/libopus/tests/
Dtest_opus_padding.c39 #define CHANNELS 2 macro
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out)); in test_overflow()
61 decoder = opus_decoder_create(48000, CHANNELS, &error); in test_overflow()
/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioManager.java62 private static final int CHANNELS = 1; field in WebRtcAudioManager
139 channels = CHANNELS; in storeAudioParameters()
269 assertTrue(numChannels == CHANNELS); in getMinInputFrameSize()
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/
DAsyncClient.java23 import static io.grpc.benchmarks.qps.ClientConfiguration.ClientParam.CHANNELS;
307 ADDRESS, CHANNELS, OUTSTANDING_RPCS, CLIENT_PAYLOAD, SERVER_PAYLOAD, in main()
DClientConfiguration.java142 CHANNELS("INT", "Number of Channels.", "" + DEFAULT.channels) { enumConstant
/external/walt/android/WALT/app/src/main/jni/
Dplayer.c58 #define CHANNELS 1 // 1 for mono, 2 for stereo macro
406 format_pcm.numChannels = CHANNELS; in Java_org_chromium_latency_walt_AudioTest_createAudioRecorder()
/external/skqp/src/compute/skc/platforms/cl_12/kernels/
Drender.cl1557 // ORDERING SO THAT COLOR CHANNELS MATCH 0xAARRGGBBAA ORDER
1608 // ORDERING SO THAT COLOR CHANNELS MATCH 0xAARRGGBBAA ORDER
/external/skia/src/compute/skc/platforms/cl_12/kernels/
Drender.cl1557 // ORDERING SO THAT COLOR CHANNELS MATCH 0xAARRGGBBAA ORDER
1608 // ORDERING SO THAT COLOR CHANNELS MATCH 0xAARRGGBBAA ORDER