/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/ |
H A D | per_thread_sem_test.cc | 49 void Wait() { in Wait() function in absl::synchronization_internal::SimpleSemaphore 58 // blocked Wait() call will be woken up and proceed to lock the 76 base_internal::ThreadIdentity *identity2; // First Wait()-er. 87 Wait(t->timeout); in TimingThread() 105 // Wait for our partner thread to register their identity. in TestTiming() 106 t.identity2_written.Wait(); in TestTiming() 114 Wait(t.timeout); in TestTiming() 131 static bool Wait(KernelTimeout t) { in Wait() function in absl::synchronization_internal::PerThreadSemTest 132 return PerThreadSem::Wait(t); in Wait() 136 static bool Wait(abs function in absl::synchronization_internal::PerThreadSemTest [all...] |
H A D | per_thread_sem.h | 78 // !t.has_timeout() => Wait(t) will return true. 79 static inline bool Wait(KernelTimeout t); 110 bool absl::synchronization_internal::PerThreadSem::Wait( in Wait() function in absl::synchronization_internal::PerThreadSem
|
H A D | waiter.cc | 76 bool Waiter::Wait(KernelTimeout t) { in Wait() function in absl::synchronization_internal::Waiter 176 bool Waiter::Wait(KernelTimeout t) { in Wait() function in absl::synchronization_internal::Waiter 249 bool Waiter::Wait(KernelTimeout t) { in Wait() function in absl::synchronization_internal::Waiter 371 bool Waiter::Wait(KernelTimeout t) { in Wait() function in absl::synchronization_internal::Waiter
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 1 //===- SIInsertWaitcnts.cpp - Insert Wait Instructions --------------------===// 169 void addWait(AMDGPU::Waitcnt &Wait, InstCounterType T, unsigned Count) { in addWait() argument 172 Wait.VmCnt = std::min(Wait.VmCnt, Count); in addWait() 175 Wait.ExpCnt = std::min(Wait.ExpCnt, Count); in addWait() 178 Wait.LgkmCnt = std::min(Wait.LgkmCnt, Count); in addWait() 181 Wait.VsCnt = std::min(Wait in addWait() 767 applyWaitcnt(const AMDGPU::Waitcnt &Wait) applyWaitcnt() argument [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_abort_sniffer.cpp | 45 void Wait (dng_priority priority); 127 void dng_priority_manager::Wait (dng_priority priority) in Wait() function in dng_priority_manager 138 fCondition.Wait (fMutex); in Wait() 210 gPriorityManager.Wait (sniffer->Priority ()); in SniffForAbort()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | semaphore.cc | 33 void Semaphore::Wait() { in Wait() function in v8::base::Semaphore 71 void Semaphore::Wait() { 87 // Wait for semaphore signalled or timeout. 131 void Semaphore::Wait() { 170 void Semaphore::Wait() { native_handle_.Take(); }
|
H A D | condition-variable.cc | 76 void ConditionVariable::Wait(Mutex* mutex) { in Wait() function in v8::base::ConditionVariable 141 void ConditionVariable::Wait(Mutex* mutex) { 188 void ConditionVariable::Wait(Mutex* mutex) {
|
/third_party/gn/src/util/ |
H A D | semaphore.cc | 31 void Semaphore::Wait() { in Wait() function in Semaphore 56 void Semaphore::Wait() { in Wait() function in Semaphore 86 void Semaphore::Wait() { in Wait() function in Semaphore
|
H A D | auto_reset_event.h | 44 void Wait() { 48 semaphore_.Wait();
|
H A D | semaphore.h | 35 void Wait();
|
/third_party/skia/third_party/externals/dawn/src/dawn_platform/ |
H A D | WorkerThread.cpp | 30 void Wait() { in Wait() function in __anon20526::AsyncWaitableEventImpl 60 void Wait() override { 61 mWaitableEventImpl->Wait();
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
H A D | blocking_counter_test.cc | 53 // Wait for the threads to have all finished. in TEST() 54 counter.Wait(); in TEST() 68 counter.Wait(); in TEST()
|
H A D | blocking_counter_benchmark.cc | 30 counter.Wait(); in BM_BlockingCounter_SingleThread() 70 counter.Wait(); in BM_BlockingCounter_Wait()
|
H A D | blocking_counter.h | 35 // with an initial value `initial_count`. A thread can then call `Wait()` on 45 // - `Wait()` is called at most once on it. 51 // - When `Wait()` returns, it is legal to destroy the `BlockingCounter`. 52 // - When `Wait()` returns, the number of calls to `DecrementCount()` on 61 // bcount.Wait(); // wait for all work to be complete 80 // BlockingCounter::Wait() 88 // from `Wait()`. 89 void Wait();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Threading.h | 69 enum InitStatus { Uninitialized = 0, Wait = 1, Done = 2 }; enumerator 98 sys::cas_flag old_val = sys::CompareAndSwap(&flag, Wait, Uninitialized); in call_once() 107 // Wait until any thread doing the call has finished. in call_once()
|
/third_party/skia/tools/skp/page_sets/ |
H A D | skia_gmail_desktop.py | 34 action_runner.Wait(10) 36 action_runner.Wait(10)
|
H A D | skia_googlecalendar_desktop.py | 31 action_runner.Wait(15) 33 action_runner.Wait(15)
|
H A D | skia_googledocs_desktop.py | 31 action_runner.Wait(15) 33 action_runner.Wait(15)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | Threading.h | 92 enum InitStatus { Uninitialized = 0, Wait = 1, Done = 2 }; enumerator 125 sys::cas_flag old_val = sys::CompareAndSwap(&flag.status, Wait, Uninitialized); in call_once() 134 // Wait until any thread doing the call has finished. in call_once()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/shell/ |
H A D | shell_unix.go | 78 cmd.Wait() 103 go func() { res <- c.Wait() }()
|
H A D | shell_windows.go | 39 go func() { res <- c.Wait() }()
|
/third_party/node/deps/v8/src/compiler-dispatcher/ |
H A D | optimizing-compile-dispatcher.cc | 144 while (ref_count_ > 0) ref_count_zero_.Wait(&ref_count_mutex_); in AwaitCompileTasks() 158 while (ref_count_ > 0) ref_count_zero_.Wait(&ref_count_mutex_); in FlushQueues()
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/ |
H A D | optimization.go | 42 wg.Wait() 150 wg.Wait()
|
/third_party/node/deps/v8/src/tasks/ |
H A D | operations-barrier.cc | 22 release_condition_.Wait(&mutex_); in CancelAndWait()
|
/third_party/node/deps/v8/src/execution/ |
H A D | futex-emulation.cc | 130 // variable. The mutex will not be locked if FutexEmulation::Wait hasn't in NotifyWake() 283 Wait<int32_t>(isolate, mode, array_buffer, addr, value, rel_timeout_ms); in WaitJs32() 291 Wait<int64_t>(isolate, mode, array_buffer, addr, value, rel_timeout_ms); in WaitJs64() 299 return Wait<int32_t>(isolate, WaitMode::kSync, array_buffer, addr, value, in WaitWasm32() 307 return Wait<int64_t>(isolate, WaitMode::kSync, array_buffer, addr, value, in WaitWasm64() 312 Object FutexEmulation::Wait(Isolate* isolate, WaitMode mode, in Wait() function in v8::internal::FutexEmulation 333 return Wait(isolate, mode, array_buffer, addr, value, use_timeout, in Wait() 347 Object FutexEmulation::Wait(Isolate* isolate, WaitMode mode, in Wait() function in v8::internal::FutexEmulation 436 // 1) Before Wait is called: the notification will be dropped, but in WaitSync() 488 node->cond_.Wait(g_mute in WaitSync() [all...] |