/external/rust/crates/grpcio-sys/grpc/src/core/lib/gprpp/ |
D | mpscq.cc | 45 Node* next = tail_->next.Load(MemoryOrder::ACQUIRE); in PopAndCheckEnd() 54 next = tail->next.Load(MemoryOrder::ACQUIRE); in PopAndCheckEnd() 61 Node* head = head_.Load(MemoryOrder::ACQUIRE); in PopAndCheckEnd() 68 next = tail->next.Load(MemoryOrder::ACQUIRE); in PopAndCheckEnd()
|
D | dual_ref_counted.h | 111 uint64_t prev_ref_pair = refs_.Load(MemoryOrder::ACQUIRE); in RefIfNonZero() 124 MemoryOrder::ACQUIRE)); in RefIfNonZero() 130 uint64_t prev_ref_pair = refs_.Load(MemoryOrder::ACQUIRE); in RefIfNonZero() 149 MemoryOrder::ACQUIRE)); in RefIfNonZero()
|
D | atomic.h | 33 ACQUIRE = static_cast<int>(std::memory_order_acquire), enumerator 84 bool IncrementIfNonzero(MemoryOrder load_order = MemoryOrder::ACQUIRE) {
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/poller/ |
D | eventmanager_libuv.cc | 62 return should_stop_.Load(grpc_core::MemoryOrder::ACQUIRE) != 0; in ShouldStop() 66 if (should_stop_.Load(grpc_core::MemoryOrder::ACQUIRE)) { in Shutdown() 72 while (shutdown_refcount_.Load(grpc_core::MemoryOrder::ACQUIRE) > 0) { in Shutdown()
|
/external/marisa-trie/bindings/perl/ |
D | marisa.pm | 80 sub ACQUIRE { subroutine 113 sub ACQUIRE { subroutine 160 sub ACQUIRE { subroutine 204 sub ACQUIRE { subroutine 259 sub ACQUIRE { subroutine
|
/external/llvm-project/llvm/utils/benchmark/src/ |
D | mutex.h | 37 #define ACQUIRE(...) \ macro 79 void lock() ACQUIRE() { mut_.lock(); } in lock() 91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {} in MutexLock()
|
/external/llvm-project/libcxx/utils/google-benchmark/src/ |
D | mutex.h | 37 #define ACQUIRE(...) \ macro 79 void lock() ACQUIRE() { mut_.lock(); } in lock() 91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {} in MutexLock()
|
/external/google-benchmark/src/ |
D | mutex.h | 37 #define ACQUIRE(...) \ macro 79 void lock() ACQUIRE() { mut_.lock(); } in lock() 91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {} in MutexLock()
|
/external/libcxx/utils/google-benchmark/src/ |
D | mutex.h | 37 #define ACQUIRE(...) \ macro 79 void lock() ACQUIRE() { mut_.lock(); } in lock() 91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {} in MutexLock()
|
/external/swiftshader/third_party/marl/include/marl/ |
D | mutex.h | 36 MARL_NO_EXPORT inline void lock() ACQUIRE() { _.lock(); } in lock() 75 inline lock(mutex& m) ACQUIRE(m) : _(m._) {} in lock()
|
D | tsa.h | 50 #define ACQUIRE(...) \ macro
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_idle/ |
D | client_idle_filter.cc | 227 MemoryOrder::ACQUIRE, in IncreaseCallCount() 323 &state, PROCESSING, MemoryOrder::ACQUIRE, MemoryOrder::RELAXED); in IdleTimerCallback() 338 &state, PROCESSING, MemoryOrder::ACQUIRE, MemoryOrder::RELAXED); in IdleTimerCallback()
|
/external/llvm-project/clang/docs/ |
D | ThreadSafetyAnalysis.rst | 79 as such (using ``ACQUIRE``/``RELEASE``). 215 ACQUIRE(...), ACQUIRE_SHARED(...), RELEASE(...), RELEASE_SHARED(...), RELEASE_GENERIC(...) 221 ``ACQUIRE`` and ``ACQUIRE_SHARED`` are attributes on functions or methods 224 (exclusively for ``ACQUIRE``, shared for ``ACQUIRE_SHARED``). 236 void lockAndInit() ACQUIRE(mu) { 252 If no argument is passed to ``ACQUIRE`` or ``RELEASE``, then the argument is 267 void Lock() ACQUIRE() { mu.Lock(); } 425 as ``ACQUIRE``. See :ref:`mutexheader`, below, for example uses. 749 ~MutexUnlocker() ACQUIRE(mu) { mu->Lock(); } 822 #define ACQUIRE(...) \ [all …]
|
/external/clang/docs/ |
D | ThreadSafetyAnalysis.rst | 79 as such (using ``ACQUIRE``/``RELEASE``). 212 ACQUIRE(...), ACQUIRE_SHARED(...), RELEASE(...), RELEASE_SHARED(...) 218 ``ACQUIRE`` is an attribute on functions or methods, which 233 void lockAndInit() ACQUIRE(mu) { 249 If no argument is passed to ``ACQUIRE`` or ``RELEASE``, then the argument is 264 void Lock() ACQUIRE() { mu.Lock(); } 415 as ``ACQUIRE``. See :ref:`mutexheader`, below, for example uses. 718 ~MutexUnlocker() ACQUIRE(mu) { mu->Lock(); } 793 #define ACQUIRE(...) \ 834 void Lock() ACQUIRE(); [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/surface/ |
D | completion_queue.cc | 250 if (pending_events.Load(grpc_core::MemoryOrder::ACQUIRE) != 0) { in ~cq_next_data() 281 if (pending_events.Load(grpc_core::MemoryOrder::ACQUIRE) != 0) { in ~cq_pluck_data() 319 if (pending_events.Load(grpc_core::MemoryOrder::ACQUIRE) != 0) { in ~cq_callback_data() 735 if (cqd->pending_events.Load(grpc_core::MemoryOrder::ACQUIRE) != 1) { 1030 if (cqd->pending_events.Load(grpc_core::MemoryOrder::ACQUIRE) == 0) { 1077 cqd->pending_events.Load(grpc_core::MemoryOrder::ACQUIRE) > 0) {
|
D | server.cc | 1226 MemoryOrder::ACQUIRE)) { in FailCallCreation()
|
/external/llvm-project/clang/test/CodeGenOpenCL/ |
D | atomic-ops.cl | 212 // CHECK-NEXT: i32 1, label %[[ACQUIRE:[0-9a-zA-Z._]+]] 213 // CHECK-NEXT: i32 2, label %[[ACQUIRE]] 222 // CHECK: [[ACQUIRE]]
|
/external/ipsec-tools/src/racoon/ |
D | TODO | 25 ACQUIRE message. 104 to do this, we need to remember which ACQUIRE was caused by which socket,
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/health/ |
D | health_check_client.cc | 430 MemoryOrder::ACQUIRE)) { in Cancel() 600 if (seen_response_.Load(MemoryOrder::ACQUIRE)) { in CallEndedLocked()
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/transport/ |
D | metadata.h | 270 bool AllRefsDropped() { return refcnt_.Load(MemoryOrder::ACQUIRE) == 0; } in AllRefsDropped()
|
D | metadata.cc | 563 if (user_data->destroy_user_data.Load(grpc_core::MemoryOrder::ACQUIRE) == in get_user_data()
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/load_reporting/ |
D | server_load_reporting_filter.cc | 343 if (registered.Load(grpc_core::MemoryOrder::ACQUIRE)) return; in ServerLoadReportingFilterStaticRegistrar()
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/ |
D | tcp_posix.cc | 320 if (shutdown_.Load(MemoryOrder::ACQUIRE)) { in TryGetSendRecordLocked()
|
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/ |
D | client_channel.cc | 154 return disconnect_error_.Load(MemoryOrder::ACQUIRE); in disconnect_error()
|