Home
last modified time | relevance | path

Searched refs:Stop (Results 1 – 25 of 459) sorted by relevance

12345678910>>...19

/external/llvm/lib/IR/
DUse.cpp57 Use *Use::initTags(Use *const Start, Use *Stop) { in initTags() argument
60 if (Start == Stop--) in initTags()
67 new (Stop) Use(tags[Done++]); in initTags()
71 while (Start != Stop) { in initTags()
72 --Stop; in initTags()
74 new (Stop) Use(stopTag); in initTags()
78 new (Stop) Use(PrevPtrTag(Count & 1)); in initTags()
87 void Use::zap(Use *Start, const Use *Stop, bool del) { in zap() argument
88 while (Start != Stop) in zap()
89 (--Stop)->~Use(); in zap()
/external/llvm/lib/CodeGen/
DInterferenceCache.cpp125 SlotIndex Start, Stop; in update() local
126 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
162 if (StartI >= Stop) in update()
175 if (StartI >= Stop) in update()
184 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update()
193 PrevPos = Stop; in update()
204 std::tie(Start, Stop) = Indexes->getMBBRange(MBBNum); in update()
210 if (!I.valid() || I.start() >= Stop) in update()
212 I.advanceTo(Stop); in update()
213 bool Backup = !I.valid() || I.start() >= Stop; in update()
[all …]
DSplitKit.cpp185 SlotIndex Start, Stop; in calcLiveBlockInfo() local
186 std::tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB); in calcLiveBlockInfo()
191 if (UseI == UseE || *UseI >= Stop) { in calcLiveBlockInfo()
196 if (LVI->end < Stop) in calcLiveBlockInfo()
203 while (UseI != UseE && *UseI < Stop); in calcLiveBlockInfo()
205 assert(BI.LastInstr < Stop); in calcLiveBlockInfo()
219 while (LVI->end < Stop) { in calcLiveBlockInfo()
221 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
257 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
261 if (LVI->start < Stop) in calcLiveBlockInfo()
[all …]
/external/eigen/Eigen/src/Core/
DAssign.h134 template<typename Derived1, typename Derived2, int Index, int Stop>
145 assign_DefaultTraversal_CompleteUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src); in run()
149 template<typename Derived1, typename Derived2, int Stop>
150 struct assign_DefaultTraversal_CompleteUnrolling<Derived1, Derived2, Stop, Stop>
155 template<typename Derived1, typename Derived2, int Index, int Stop>
161 assign_DefaultTraversal_InnerUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src, outer);
165 template<typename Derived1, typename Derived2, int Stop>
166 struct assign_DefaultTraversal_InnerUnrolling<Derived1, Derived2, Stop, Stop>
175 template<typename Derived1, typename Derived2, int Index, int Stop>
181 assign_LinearTraversal_CompleteUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src);
[all …]
/external/chromium-trace/catapult/devil/devil/android/
Dlogcat_monitor_test.py77 test_log.Stop()
88 test_log.Stop()
113 test_log.Stop()
122 test_log.Stop()
146 test_log.Stop()
158 test_log.Stop()
173 test_log.Stop()
188 test_log.Stop()
206 test_log.Stop()
/external/libchrome/base/
Dsequence_checker_unittest.cc70 other_thread_.Stop(); in TearDown()
138 other_thread()->Stop(); in TEST_F()
150 other_thread()->Stop(); in TEST_F()
165 other_thread()->Stop(); in TEST_F()
183 other_thread()->Stop(); in TEST_F()
195 other_thread()->Stop(); in MethodOnDifferentThreadDeathTest()
220 other_thread()->Stop(); in DetachThenCallFromDifferentThreadDeathTest()
253 other_thread()->Stop(); in DifferentSequenceTokensDeathTest()
280 other_thread()->Stop(); in WorkerPoolAndSimpleThreadDeathTest()
/external/libchrome/base/threading/
Dthread_id_name_manager_unittest.cc30 thread_b.Stop(); in TEST_F()
31 thread_a.Stop(); in TEST_F()
42 thread_b.Stop(); in TEST_F()
46 thread_a.Stop(); in TEST_F()
57 thread_a.Stop(); in TEST_F()
62 thread_a.Stop(); in TEST_F()
Dthread_unittest.cc34 ~SleepInsideInitThread() override { Stop(); } in ~SleepInsideInitThread()
71 ~CaptureToEventList() override { Stop(); } in ~CaptureToEventList()
120 a.Stop(); in TEST_F()
126 a.Stop(); in TEST_F()
132 a.Stop(); in TEST_F()
135 a.Stop(); in TEST_F()
194 a.Stop(); in TEST_F()
242 a.Stop(); in TEST_F()
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas210 function Substring(const Start, Stop: Integer): String; in Substring()
347 function ToString(const Start, Stop: Integer): String; overload;
355 function ToString(const Start, Stop: IToken): String; overload;
966 function GetTokens(const Start, Stop: Integer): IList<IToken>; overload;
972 function GetTokens(const Start, Stop: Integer;
975 function GetTokens(const Start, Stop: Integer;
978 function GetTokens(const Start, Stop,
1177 property Stop: IANTLRInterface read GetStop write SetStop; property
1314 procedure Replace(const Start, Stop: Integer; const Text: IANTLRInterface); overload;
1316 procedure Replace(const Start, Stop: IToken; const Text: IANTLRInterface); overload;
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/tracing_agent/
Ddisplay_tracing_agent_unittest.py42 self._platform_backend.surface_stats_collector.Stop.return_value = (0, [])
47 self._platform_backend.surface_stats_collector.Stop.return_value = (0, [])
54 self._platform_backend.surface_stats_collector.Stop.side_effect = Exception(
62 self._platform_backend.surface_stats_collector.Stop.side_effect = None
63 self._platform_backend.surface_stats_collector.Stop.return_value = (0, [])
/external/zlib/src/contrib/ada/
Dmtest.adb24 Stop : Boolean := False; variable
26 pragma Atomic (Stop);
138 exit Main when Stop;
144 Stop := True;
155 Stop := True;
/external/webrtc/webrtc/modules/utility/source/
Dprocess_thread_impl_unittest.cc59 thread.Stop(); in TEST()
66 thread.Stop(); in TEST()
88 thread.Stop(); in TEST()
110 thread.Stop(); in TEST()
144 thread.Stop(); in TEST()
177 thread.Stop(); in ProcessCallAfterAFewMs()
236 thread.Stop(); in TEST()
285 thread.Stop(); in TEST()
302 thread.Stop(); in TEST()
/external/libchrome/components/timers/
Dalarm_timer_chromeos.cc35 ~RtcAlarmIOThread() override { Stop(); } in ~RtcAlarmIOThread()
111 void Stop();
219 void AlarmTimer::Delegate::Stop() { in Stop() function in timers::AlarmTimer::Delegate
223 FROM_HERE, base::Bind(&Delegate::Stop, scoped_refptr<Delegate>(this))); in Stop()
344 Stop(); in ~AlarmTimer()
357 void AlarmTimer::Stop() { in Stop() function in timers::AlarmTimer
362 base::Timer::Stop(); in Stop()
368 delegate_->Stop(); in Stop()
420 Stop(); in WillDestroyCurrentMessageLoop()
437 Stop(); in OnTimerFired()
/external/clang/lib/Analysis/
DFormatStringParsing.h53 bool Stop; variable
56 : Start(nullptr), Stop(stop) {} in Start()
59 : FS(fs), Start(start), Stop(false) {} in SpecifierResult()
62 bool shouldStop() const { return Stop; } in shouldStop()
/external/webrtc/talk/app/webrtc/
Drtpreceiver.cc51 Stop(); in ~AudioRtpReceiver()
69 void AudioRtpReceiver::Stop() { in Stop() function in webrtc::AudioRtpReceiver
96 Stop(); in ~VideoRtpReceiver()
99 void VideoRtpReceiver::Stop() { in Stop() function in webrtc::VideoRtpReceiver
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DParserRuleReturnScope.cs77 public TToken Stop property in Antlr.Runtime.ParserRuleReturnScope
98 object IRuleReturnScope.Stop
102 return Stop;
/external/libchrome/sandbox/linux/services/
Dthread_helpers.cc112 enum class ThreadAction { Start, Stop }; enumerator
118 DCHECK(action == ThreadAction::Start || action == ThreadAction::Stop); in ChangeThreadStateAndWatchProcFS()
133 if (action == ThreadAction::Stop) { in ChangeThreadStateAndWatchProcFS()
136 thread->Stop(); in ChangeThreadStateAndWatchProcFS()
192 return ChangeThreadStateAndWatchProcFS(proc_fd, thread, ThreadAction::Stop); in StopThreadAndWatchProcFS()
/external/webrtc/webrtc/base/
Dtask.cc47 Stop(); in ~Task()
90 Stop(); in Step()
127 Stop(); in Step()
152 Stop(); in Abort()
222 void Task::Stop() { in Stop() function in rtc::Task
/external/llvm/test/Transforms/GlobalOpt/
D2009-03-05-dbg.ll4 @Stop = internal global i32 0 ; <i32*> [#uses=3]
14 store i32 0, i32* @Stop, align 4, !dbg !9
20 store i32 1, i32* @Stop, align 4, !dbg !11
36 %0 = load i32, i32* @Stop, align 4, !dbg !13 ; <i32> [#uses=1]
58 …!DIGlobalVariable(name: "Stop", line: 2, isLocal: true, isDefinition: true, scope: !1, file: !1, t…
/external/libchrome/base/test/
Dtest_io_thread.cc36 Stop(); in ~TestIOThread()
46 void TestIOThread::Stop() { in Stop() function in base::TestIOThread
48 io_thread_.Stop(); in Stop()
/external/webrtc/talk/media/devices/
Dyuvframescapturer.cc51 Stop(); in ~YuvFramesThread()
110 Stop(); in ~YuvFramesCapturer()
160 void YuvFramesCapturer::Stop() { in Stop() function in cricket::YuvFramesCapturer
162 frames_generator_thread->Stop(); in Stop()
Dfilevideocapturer.cc43 Stop(); in Start()
53 void VideoRecorder::Stop() { in Stop() function in cricket::VideoRecorder
117 Stop(); in ~FileReadThread()
173 Stop(); in ~FileVideoCapturer()
261 void FileVideoCapturer::Stop() { in Stop() function in cricket::FileVideoCapturer
263 file_read_thread_->Stop(); in Stop()
Dfilevideocapturer.h57 ~VideoRecorder() { Stop(); } in ~VideoRecorder()
64 void Stop();
119 virtual void Stop();
/external/avahi/avahi-sharp/
DHostNameResolver.cs67 Stop (false);
79 Stop (false);
118 Stop (true); in Dispose()
137 private void Stop (bool force) in Stop() method in Avahi.HostNameResolver
/external/valgrind/gdbserver_tests/
Dmcsignopass.stdoutB.exp1 Signal Stop Print Pass to program Description
3 Signal Stop Print Pass to program Description
5 Signal Stop Print Pass to program Description
51 Signal Stop Print Pass to program Description

12345678910>>...19