/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/ |
D | RPCUtilsTest.cpp | 172 auto Channels = createPairedQueueChannels(); in TEST() local 173 DummyRPCEndpoint Server(*Channels.first); in TEST() 178 auto Channels = createPairedQueueChannels(); in TEST() local 179 DummyRPCEndpoint Client(*Channels.first); in TEST() 180 DummyRPCEndpoint Server(*Channels.second); in TEST() 222 auto Channels = createPairedQueueChannels(); in TEST() local 223 DummyRPCEndpoint Client(*Channels.first); in TEST() 224 DummyRPCEndpoint Server(*Channels.second); in TEST() 267 auto Channels = createPairedQueueChannels(); in TEST() local 268 DummyRPCEndpoint Client(*Channels.first); in TEST() [all …]
|
D | RemoteObjectLayerTest.cpp | 113 auto Channels = createPairedQueueChannels(); in TEST() local 126 RPCEndpoint ClientEP(*Channels.first, true); in TEST() 129 RPCEndpoint ServerEP(*Channels.second, true); in TEST() 171 auto Channels = createPairedQueueChannels(); in TEST() local 180 RPCEndpoint ClientEP(*Channels.first, true); in TEST() 183 RPCEndpoint ServerEP(*Channels.second, true); in TEST() 226 auto Channels = createPairedQueueChannels(); in TEST() local 233 RPCEndpoint ClientEP(*Channels.first, true); in TEST() 236 RPCEndpoint ServerEP(*Channels.second, true); in TEST() 274 auto Channels = createPairedQueueChannels(); in TEST() local [all …]
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | normal.cc | 40 if (length % output->Channels() != 0) { in Process() 63 AudioMultiVector expanded(output->Channels()); in Process() 67 for (size_t channel_ix = 0; channel_ix < output->Channels(); ++channel_ix) { in Process() 74 size_t length_per_channel = length / output->Channels(); in Process() 117 assert(channel_ix < output->Channels()); in Process() 137 assert(channel_ix < output->Channels()); in Process() 146 assert(output->Channels() == 1); // Not adapted for multi-channel yet. in Process() 182 size_t length_per_channel = length / output->Channels(); in Process() 184 for (size_t channel_ix = 0; channel_ix < output->Channels(); in Process() 187 assert(channel_ix < output->Channels()); in Process()
|
D | audio_multi_vector_unittest.cc | 75 EXPECT_EQ(num_channels_, vec1.Channels()); in TEST_P() 81 EXPECT_EQ(num_channels_, vec2.Channels()); in TEST_P() 105 ASSERT_EQ(num_channels_, vec.Channels()); in TEST_P() 107 ASSERT_EQ(num_channels_, vec_copy.Channels()); in TEST_P() 109 for (size_t channel = 0; channel < vec.Channels(); ++channel) { in TEST_P() 181 ASSERT_EQ(num_channels_, vec.Channels()); in TEST_P() 273 for (size_t channel = 0; channel < vec.Channels(); ++channel) { in TEST_P()
|
D | neteq_impl.cc | 695 decoder->Channels() != algorithm_buffer_->Channels()) { in InsertPacketInternal() 696 SetSampleRateAndChannels(decoder_info->fs_hz, decoder->Channels()); in InsertPacketInternal() 861 size_t num_output_samples = output_size_samples_ * sync_buffer_->Channels(); in GetAudioInternal() 864 output_size_samples_ << " * " << sync_buffer_->Channels(); in GetAudioInternal() 866 num_output_samples_per_channel = max_length / sync_buffer_->Channels(); in GetAudioInternal() 871 *num_channels = sync_buffer_->Channels(); in GetAudioInternal() 897 return_value = DtmfOverdub(dtmf_event, sync_buffer_->Channels(), output); in GetAudioInternal() 1234 decoder->Channels() != algorithm_buffer_->Channels()) { in Decode() 1236 SetSampleRateAndChannels(decoder_info->fs_hz, decoder->Channels()); in Decode() 1307 (decoder && decoder->Channels() == sync_buffer_->Channels())); in Decode() [all …]
|
D | neteq_network_stats_unittest.cc | 49 size_t Channels() const override { return num_channels_; } in Channels() function in webrtc::test::MockAudioDecoder 63 memset(decoded, 0, sizeof(int16_t) * kPacketDuration * Channels()); in DecodeInternal() 64 return kPacketDuration * Channels(); in DecodeInternal()
|
D | neteq_impl_unittest.cc | 275 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F() 449 size_t Channels() const override { return 1; } in TEST_F() function in webrtc::TEST_F::CountingSamplesDecoder 524 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F() 685 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F() 825 size_t Channels() const override { return kChannels; } in TEST_F() function in webrtc::TEST_F::MockAudioDecoder 953 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F() 1022 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F() 1147 EXPECT_CALL(mock_decoder, Channels()).WillRepeatedly(Return(1)); in TEST_F()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/ |
D | audio_decoder_pcm.cc | 19 size_t AudioDecoderPcmU::Channels() const { in Channels() function in webrtc::AudioDecoderPcmU 38 return static_cast<int>(encoded_len / Channels()); in PacketDuration() 43 size_t AudioDecoderPcmA::Channels() const { in Channels() function in webrtc::AudioDecoderPcmA 62 return static_cast<int>(encoded_len / Channels()); in PacketDuration()
|
D | audio_decoder_pcm.h | 26 size_t Channels() const override; 47 size_t Channels() const override;
|
/external/brotli/java/org/brotli/wrapper/dec/ |
D | BrotliDecoderChannelTest.java | 17 import java.nio.channels.Channels; 74 ReadableByteChannel src = Channels.newChannel(new ByteArrayInputStream(compressed)); in run() 78 crc = BundleHelper.fingerprintStream(Channels.newInputStream(decoder)); in run()
|
D | BrotliInputStream.java | 11 import java.nio.channels.Channels; 30 this.decoder = new Decoder(Channels.newChannel(source), bufferSize); in BrotliInputStream()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/ |
D | audio_decoder_g722.cc | 53 return static_cast<int>(2 * encoded_len / Channels()); in PacketDuration() 56 size_t AudioDecoderG722::Channels() const { in Channels() function in webrtc::AudioDecoderG722 103 size_t AudioDecoderG722Stereo::Channels() const { in Channels() function in webrtc::AudioDecoderG722Stereo
|
D | audio_decoder_g722.h | 27 size_t Channels() const override; 53 size_t Channels() const override;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/ |
D | audio_decoder_pcm16b.cc | 25 size_t AudioDecoderPcm16B::Channels() const { in Channels() function in webrtc::AudioDecoderPcm16B 45 return static_cast<int>(encoded_len / (2 * Channels())); in PacketDuration()
|
D | audio_decoder_pcm16b.h | 24 size_t Channels() const override;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
D | AppendTrack.java | 30 import java.nio.channels.Channels; 51 track.getSampleDescriptionBox().getBox(Channels.newChannel(curBaos)); in AppendTrack() 52 stsd.getBox(Channels.newChannel(refBaos)); in AppendTrack() 139 cur1.getBox(Channels.newChannel(baos1)); in mergeAudioSampleEntries() 140 cur2.getBox(Channels.newChannel(baos2)); in mergeAudioSampleEntries()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUInstrInfo.cpp | 62 int AMDGPUInstrInfo::getMaskedMIMGOp(uint16_t Opcode, unsigned Channels) const { in getMaskedMIMGOp() 63 switch (Channels) { in getMaskedMIMGOp()
|
/external/brotli/java/org/brotli/wrapper/enc/ |
D | BrotliOutputStream.java | 11 import java.nio.channels.Channels; 31 this.encoder = new Encoder(Channels.newChannel(destination), params, bufferSize); in BrotliOutputStream()
|
D | BrotliEncoderChannelTest.java | 15 import java.nio.channels.Channels; 87 WritableByteChannel encoder = new BrotliEncoderChannel(Channels.newChannel(dst)); in run()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ |
D | audio_decoder.cc | 26 duration * Channels() * sizeof(int16_t) > max_decoded_bytes) { in Decode() 39 duration * Channels() * sizeof(int16_t) > max_decoded_bytes) { in DecodeRedundant()
|
/external/grpc-grpc/doc/ |
D | connectivity-semantics-and-api.md | 10 gRPC Channels provide the abstraction over which clients can communicate with 12 than a DNS name. Channels encapsulate a range of functionality including name 14 handshakes. Channels can also handle errors on established connections and 31 handshake timing out or a socket error). Channels in this state will eventually 52 Channels may enter this state either because the application explicitly requested 56 Channels that enter this state never leave this state.
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/bzip2/ |
D | PythonTruncatedBzip2Test.java | 29 import java.nio.channels.Channels; 109 return Channels.newChannel(bZin); in makeBZ2C()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/ |
D | SampleEntry.java | 30 import java.nio.channels.Channels; 140 WritableByteChannel wbc = Channels.newChannel(baos); in _writeChildBoxes()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/examples/ |
D | Archiver.java | 26 import java.nio.channels.Channels; 114 create(format, Channels.newOutputStream(target), directory); in create()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
D | audio_decoder_ilbc.h | 27 size_t Channels() const override;
|