/external/guava/android/guava-tests/test/com/google/common/hash/ |
D | HashTestUtils.java | 97 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BOOLEAN() argument 99 for (PrimitiveSink sink : sinks) { in PUT_BOOLEAN() 106 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BYTE() argument 108 for (PrimitiveSink sink : sinks) { in PUT_BYTE() 115 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_SHORT() argument 117 for (PrimitiveSink sink : sinks) { in PUT_SHORT() 124 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_CHAR() argument 126 for (PrimitiveSink sink : sinks) { in PUT_CHAR() 133 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_INT() argument 135 for (PrimitiveSink sink : sinks) { in PUT_INT() [all …]
|
D | AbstractStreamingHasherTest.java | 143 List<Sink> sinks = Lists.newArrayList(); in testExhaustive() local 147 sinks.add(new Sink(chunkSize, bufferSize)); in testExhaustive() 158 Iterables.concat(sinks, Collections.singleton(controlSink)); in testExhaustive() 168 for (Sink sink : sinks) { in testExhaustive() 173 for (Sink sink : sinks) { in testExhaustive()
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | HashTestUtils.java | 97 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BOOLEAN() argument 99 for (PrimitiveSink sink : sinks) { in PUT_BOOLEAN() 106 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_BYTE() argument 108 for (PrimitiveSink sink : sinks) { in PUT_BYTE() 115 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_SHORT() argument 117 for (PrimitiveSink sink : sinks) { in PUT_SHORT() 124 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_CHAR() argument 126 for (PrimitiveSink sink : sinks) { in PUT_CHAR() 133 void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) { in PUT_INT() argument 135 for (PrimitiveSink sink : sinks) { in PUT_INT() [all …]
|
D | AbstractStreamingHasherTest.java | 143 List<Sink> sinks = Lists.newArrayList(); in testExhaustive() local 147 sinks.add(new Sink(chunkSize, bufferSize)); in testExhaustive() 158 Iterables.concat(sinks, Collections.singleton(controlSink)); in testExhaustive() 168 for (Sink sink : sinks) { in testExhaustive() 173 for (Sink sink : sinks) { in testExhaustive()
|
/external/webrtc/sdk/android/api/org/webrtc/ |
D | VideoTrack.java | 17 private final IdentityHashMap<VideoSink, Long> sinks = new IdentityHashMap<VideoSink, Long>(); field in VideoTrack 37 if (!sinks.containsKey(sink)) { in addSink() 39 sinks.put(sink, nativeSink); in addSink() 50 final Long nativeSink = sinks.remove(sink); in removeSink() 59 for (long nativeSink : sinks.values()) { in dispose() 63 sinks.clear(); in dispose()
|
/external/webrtc/test/pc/e2e/analyzer/video/ |
D | video_quality_analyzer_injection_helper.cc | 51 std::vector<std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>>> sinks) in AnalyzingFramePreprocessor() argument 55 sinks_(std::move(sinks)) {} in AnalyzingFramePreprocessor() 121 std::vector<std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>>> sinks; in CreateFramePreprocessor() local 125 sinks.push_back(std::make_unique<VideoWriter>(writer)); in CreateFramePreprocessor() 128 sinks.push_back(absl::WrapUnique( in CreateFramePreprocessor() 138 std::move(sinks)); in CreateFramePreprocessor() 200 std::vector<std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>>>* sinks = in OnFrame() local 202 if (sinks == nullptr) { in OnFrame() 205 for (auto& sink : *sinks) { in OnFrame() 223 std::vector<std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>>> sinks; in PopulateSinks() local [all …]
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/ |
D | breakup-islands.cc | 179 llvm::SmallPtrSet<Operation*, 4> sinks; member 190 result.sinks.insert(&sub_op); in FindSourcesAndSinksInIsland() 192 for (auto predecessor : predecessors) result.sinks.erase(predecessor); in FindSourcesAndSinksInIsland() 198 result.sinks.erase(defining_op); in FindSourcesAndSinksInIsland() 283 if (sources_and_sinks.sinks.count(&sub_op)) { in BreakUpIsland()
|
/external/scapy/scapy/ |
D | pipetool.py | 95 for q in p.sources|p.sinks|p.high_sources|p.high_sinks: 196 for q in p.sinks: 216 self.sinks = set() 223 other.sinks.add(self) 227 self.sinks.add(other) 269 for s in self.sinks: 281 if self.sources or self.sinks: 287 if self.sinks: 289 ct.punct(",").join(ct.field_name(s.name) for s in self.sinks))
|
/external/webrtc/call/ |
D | rtp_demuxer_unittest.cc | 297 MockRtpPacketSink sinks[arraysize(ssrcs)]; in TEST_F() local 299 AddSinkOnlySsrc(ssrcs[i], &sinks[i]); in TEST_F() 304 EXPECT_CALL(sinks[i], OnRtpPacket(SamePacketAs(*packet))).Times(1); in TEST_F() 311 MockRtpPacketSink sinks[arraysize(rsids)]; in TEST_F() local 313 AddSinkOnlyRsid(rsids[i], &sinks[i]); in TEST_F() 319 EXPECT_CALL(sinks[i], OnRtpPacket(SamePacketAs(*packet))).Times(1); in TEST_F() 326 MockRtpPacketSink sinks[arraysize(mids)]; in TEST_F() local 328 AddSinkOnlyMid(mids[i], &sinks[i]); in TEST_F() 334 EXPECT_CALL(sinks[i], OnRtpPacket(SamePacketAs(*packet))).Times(1); in TEST_F() 450 MockRtpPacketSink sinks[3]; in TEST_F() local [all …]
|
/external/webrtc/rtc_tools/ |
D | video_replay.cc | 305 std::vector<std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>>> sinks; member 343 stream_state->sinks.emplace_back( in ConfigureFromFile() 346 receive_config.renderer = stream_state->sinks.back().get(); in ConfigureFromFile() 366 stream_state->sinks.push_back(std::move(playback_video)); in ConfigureFromFlags() 367 stream_state->sinks.push_back(std::move(file_passthrough)); in ConfigureFromFlags() 388 receive_config.renderer = stream_state->sinks.back().get(); in ConfigureFromFlags()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
D | BluetoothA2dpFacade.java | 115 List<BluetoothDevice> sinks = sA2dpProfile.getConnectedDevices(); in a2dpConnect() local 116 if (sinks != null) { in a2dpConnect() 117 for (BluetoothDevice sink : sinks) { in a2dpConnect()
|
/external/llvm-project/llvm/test/DebugInfo/MIR/X86/ |
D | postra-subreg-sink.mir | 2 # Test that when we run the postra machine sinker (which sinks COPYs), that 64 ; DBG_VALUE of $bx should sink: a write of its superregister sinks 65 ; DBG_VALUE of $ecx should sink: a write of one of its subregisters sinks
|
/external/pigweed/pw_multisink/ |
D | docs.rst | 6 This is an module that forwards messages to multiple attached sinks, which
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | cfa.h | 322 auto sinks = TraversalRoots(reversed_blocks, pred_func, succ_func); in ComputeAugmentedCFG() local 335 (*augmented_predecessors_map)[pseudo_exit_block] = sinks; in ComputeAugmentedCFG() 336 for (auto block : sinks) { in ComputeAugmentedCFG()
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | cfa.h | 322 auto sinks = TraversalRoots(reversed_blocks, pred_func, succ_func); in ComputeAugmentedCFG() local 335 (*augmented_predecessors_map)[pseudo_exit_block] = sinks; in ComputeAugmentedCFG() 336 for (auto block : sinks) { in ComputeAugmentedCFG()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/ |
D | cfa.h | 322 auto sinks = TraversalRoots(reversed_blocks, pred_func, succ_func); in ComputeAugmentedCFG() local 335 (*augmented_predecessors_map)[pseudo_exit_block] = sinks; in ComputeAugmentedCFG() 336 for (auto block : sinks) { in ComputeAugmentedCFG()
|
/external/webrtc/test/fuzzers/utils/ |
D | rtp_replayer.cc | 120 stream_state->sinks.emplace_back( in SetupVideoStreams() 123 receive_config.renderer = stream_state->sinks.back().get(); in SetupVideoStreams()
|
D | rtp_replayer.h | 46 std::vector<std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>>> sinks; member
|
/external/pigweed/pw_trace_tokenized/ |
D | docs.rst | 25 5. Add more sinks, such as RTT. 69 The tokenized trace module adds both event callbacks and data sinks which 100 The *data sinks* are called only for trace events which get processed (tracing 103 connect different data sinks. The callback is broken into three callbacks
|
/external/skqp/site/dev/testing/ |
D | testing.md | 26 492 srcs * 3 sinks + 382 tests == 1858 tasks 59 492 srcs * 3 sinks + 382 tests == 1858 tasks 76 Sometimes DM calls these configs, sometimes sinks. Sorry. There are many 79 DM always tries to draw all sources into all sinks, which is why we multiply
|
/external/skia/site/docs/dev/testing/ |
D | testing.md | 30 492 srcs * 3 sinks + 382 tests == 1858 tasks 65 492 srcs * 3 sinks + 382 tests == 1858 tasks 82 Sometimes DM calls these configs, sometimes sinks. Sorry. There are many 85 DM always tries to draw all sources into all sinks, which is why we multiply 492
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | hoist-common.ll | 6 ; However, now that MachineSink sinks the redundant xor
|
/external/llvm/test/CodeGen/X86/ |
D | hoist-common.ll | 6 ; However, now that MachineSink sinks the redundant xor
|
/external/llvm/test/Transforms/LICM/ |
D | promote-order.ll | 4 ; LICM should keep the stores in their original order when it sinks/promotes them.
|
/external/llvm-project/llvm/test/Transforms/LICM/ |
D | promote-order.ll | 6 ; LICM should keep the stores in their original order when it sinks/promotes them.
|