Home
last modified time | relevance | path

Searched refs:Wait (Results 1 - 25 of 141) sorted by relevance

123456

/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
H A Dper_thread_sem_test.cc49 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 Dper_thread_sem.h78 // !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 Dwaiter.cc76 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 DSIInsertWaitcnts.cpp1 //===- 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 Ddng_abort_sniffer.cpp45 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 Dsemaphore.cc33 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 Dcondition-variable.cc76 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 Dsemaphore.cc31 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 Dauto_reset_event.h44 void Wait() {
48 semaphore_.Wait();
H A Dsemaphore.h35 void Wait();
/third_party/skia/third_party/externals/dawn/src/dawn_platform/
H A DWorkerThread.cpp30 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 Dblocking_counter_test.cc53 // Wait for the threads to have all finished. in TEST()
54 counter.Wait(); in TEST()
68 counter.Wait(); in TEST()
H A Dblocking_counter_benchmark.cc30 counter.Wait(); in BM_BlockingCounter_SingleThread()
70 counter.Wait(); in BM_BlockingCounter_Wait()
H A Dblocking_counter.h35 // 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 DThreading.h69 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 Dskia_gmail_desktop.py34 action_runner.Wait(10)
36 action_runner.Wait(10)
H A Dskia_googlecalendar_desktop.py31 action_runner.Wait(15)
33 action_runner.Wait(15)
H A Dskia_googledocs_desktop.py31 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 DThreading.h92 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 Dshell_unix.go78 cmd.Wait()
103 go func() { res <- c.Wait() }()
H A Dshell_windows.go39 go func() { res <- c.Wait() }()
/third_party/node/deps/v8/src/compiler-dispatcher/
H A Doptimizing-compile-dispatcher.cc144 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 Doptimization.go42 wg.Wait()
150 wg.Wait()
/third_party/node/deps/v8/src/tasks/
H A Doperations-barrier.cc22 release_condition_.Wait(&mutex_); in CancelAndWait()
/third_party/node/deps/v8/src/execution/
H A Dfutex-emulation.cc130 // 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...]

Completed in 9 milliseconds

123456