Searched refs:Done (Results 1 - 25 of 280) sorted by relevance

1234567891011>>

/external/valgrind/drd/tests/
H A Dannotate_smart_pointer.stderr.exp2 Done.
H A Dannotate_static.stderr.exp2 Done.
H A Dbug-235681.stderr.exp2 Done.
H A Dconcurrent_close.stderr.exp2 Done.
H A Dfree_is_write.stderr.exp2 Done.
H A Dfree_is_write2.stderr.exp2 Done.
H A Dpth_barrier_thr_cr.stderr.exp2 Done.
H A Dpth_broadcast.stderr.exp2 Done.
H A Dpth_detached.stderr.exp2 Done.
H A Dpth_detached2.stderr.exp2 Done.
H A Dpth_detached_sem.stderr.exp2 Done.
H A Dstd_atomic.stderr.exp3 Done.
H A Dstd_thread.stderr.exp2 Done.
/external/valgrind/helgrind/tests/
H A Dannotate_smart_pointer.stderr.exp2 Done.
/external/v8/src/crankshaft/
H A Dlithium-inl.h41 bool TempIterator::Done() { return current_ >= limit_; } function in class:v8::internal::TempIterator
45 DCHECK(!Done());
67 bool InputIterator::Done() { return current_ >= limit_; } function in class:v8::internal::InputIterator
71 DCHECK(!Done());
96 bool UseIterator::Done() { function in class:v8::internal::UseIterator
97 return input_iterator_.Done() && env_iterator_.Done();
102 DCHECK(!Done());
103 LOperand* result = input_iterator_.Done() ? env_iterator_.Current()
111 input_iterator_.Done()
[all...]
/external/skia/include/private/
H A DSkOnce.h28 if (state == Done) {
36 // Great! We'll run fn() then notify the other threads by releasing Done into fState.
38 return fState.store(Done, std::memory_order_release);
42 // We'll just spin here acquiring until it releases Done into fState.
43 while (fState.load(std::memory_order_acquire) != Done) { /*spin*/ }
47 enum State : uint8_t { NotStarted, Claimed, Done};
/external/skqp/include/private/
H A DSkOnce.h28 if (state == Done) {
36 // Great! We'll run fn() then notify the other threads by releasing Done into fState.
38 return fState.store(Done, std::memory_order_release);
42 // We'll just spin here acquiring until it releases Done into fState.
43 while (fState.load(std::memory_order_acquire) != Done) { /*spin*/ }
47 enum State : uint8_t { NotStarted, Claimed, Done};
/external/llvm/lib/IR/
H A DUse.cpp58 ptrdiff_t Done = 0; local
59 while (Done < 20) {
67 new (Stop) Use(tags[Done++]);
70 ptrdiff_t Count = Done;
75 ++Done;
76 Count = Done;
80 ++Done;
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DUse.cpp89 ptrdiff_t Done = 0; local
90 while (Done < 20) {
101 new(Stop) Use(tags[Done++]);
104 ptrdiff_t Count = Done;
109 ++Done;
110 Count = Done;
114 ++Done;
/external/toolchain-utils/bestflags/
H A Dgeneration_test.py32 then the Done method will return false, and true otherwise.
36 """"Test the Done method.
39 one and verify that the Done method returns false before setting the cost
40 for all the tasks. After the costs of all the tasks are set, the Done method
57 # The Done method of the Generation should return false before all the tasks
60 assert not gen.Done()
66 # The Done method should return true after all the tasks in the permuted
68 assert gen.Done()
/external/libchrome/base/metrics/
H A Dsample_map.cc30 bool Done() const override;
51 bool SampleMapIterator::Done() const { function in class:base::__anon10898::SampleMapIterator
56 DCHECK(!Done());
62 DCHECK(!Done());
72 while (!Done() && iter_->second == 0) {
114 for (; !iter->Done(); iter->Next()) {
/external/compiler-rt/test/tsan/
H A Dvptr_benign_race.cc13 void Done() { function in struct:A
41 obj->Done();
H A Dvptr_harmful_race.cc11 void Done() { function in struct:A
31 obj->Done();
H A Dvptr_harmful_race2.cc11 void Done() { function in struct:A
32 obj->Done();
H A Dvptr_harmful_race3.cc11 void Done() { function in struct:A
33 obj->Done();

Completed in 614 milliseconds

1234567891011>>