/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/ |
atomic_load.pass.cpp | 14 // atomic_load(const volatile atomic<T>* obj); 18 // atomic_load(const atomic<T>* obj); 31 assert(std::atomic_load(&t) == T(1)); 34 assert(std::atomic_load(&vt) == T(2));
|
/external/llvm/test/CodeGen/PowerPC/ |
atomic-2.ll | 37 define i64 @atomic_load(i64* %mem) nounwind { 39 ; CHECK: @atomic_load
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_lfstack.h | 33 return (atomic_load(&head_, memory_order_relaxed) & kPtrMask) == 0; 37 u64 cmp = atomic_load(&head_, memory_order_relaxed); 49 u64 cmp = atomic_load(&head_, memory_order_acquire);
|
sanitizer_stackdepot.cc | 74 uptr cmp = atomic_load(&depot.region_pos, memory_order_acquire); 75 uptr end = atomic_load(&depot.region_end, memory_order_acquire); 127 uptr cmp = atomic_load(p, memory_order_relaxed); 149 uptr v = atomic_load(p, memory_order_consume); 191 uptr v = atomic_load(p, memory_order_consume);
|
sanitizer_allocator.cc | 59 if (atomic_load(&internal_allocator_initialized, memory_order_acquire) == 0) { 61 if (atomic_load(&internal_allocator_initialized, memory_order_relaxed) ==
|
sanitizer_mutex.h | 52 if (atomic_load(&state_, memory_order_relaxed) == 0
|
sanitizer_atomic_clang.h | 38 INLINE typename T::Type atomic_load( function in namespace:__sanitizer
|
sanitizer_atomic_msvc.h | 69 INLINE typename T::Type atomic_load( function in namespace:__sanitizer
|
sanitizer_quarantine.h | 122 return atomic_load(&size_, memory_order_relaxed);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/ |
atomic_load.pass.cpp | 21 // atomic_load(const shared_ptr<T>* p) 31 std::shared_ptr<int> q = std::atomic_load(&p);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_mutex.cc | 208 CHECK_EQ(atomic_load(&state_, memory_order_relaxed), kUnlocked); 220 if (atomic_load(&state_, memory_order_relaxed) == kUnlocked) { 250 prev = atomic_load(&state_, memory_order_acquire); 271 CHECK_NE(atomic_load(&state_, memory_order_relaxed), 0);
|
tsan_fd.cc | 52 if (s && atomic_load(&s->rc, memory_order_relaxed) != (u64)-1) 58 if (s && atomic_load(&s->rc, memory_order_relaxed) != (u64)-1) { 74 uptr l1 = atomic_load(pl1, memory_order_consume); 123 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); 135 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed);
|
tsan_mman.cc | 36 uptr v = atomic_load(a, memory_order_relaxed); 43 v = atomic_load(a, memory_order_relaxed); 53 uptr v = atomic_load(a, memory_order_relaxed);
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_mutex.cc | 169 int *val = (int *)atomic_load(singleton, memory_order_acquire); 215 uptr v = atomic_load(&flag, memory_order_acquire);
|
tsan_test_util_linux.cc | 323 Event* ev = (Event*)atomic_load(&impl->event, memory_order_acquire); 343 CHECK_EQ(atomic_load(&event, memory_order_relaxed), 0); 345 while (atomic_load(&event, memory_order_acquire) != 0)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
atomicfwd_c.h | 125 #define atomic_load(__a) \ macro
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
atomicfwd_c.h | 125 #define atomic_load(__a) \ macro
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
atomicfwd_c.h | 125 #define atomic_load(__a) \ macro
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
atomicfwd_c.h | 125 #define atomic_load(__a) \ macro
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
atomicfwd_c.h | 125 #define atomic_load(__a) \ macro
|
/external/compiler-rt/lib/lsan/ |
lsan_interceptors.cc | 210 while ((tid = atomic_load(&p->tid, memory_order_acquire)) == 0) 239 while (atomic_load(&p.tid, memory_order_acquire) != 0)
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/ |
shared_ptr.hpp | 634 template<class T> shared_ptr<T> atomic_load( shared_ptr<T> const * p ) function in namespace:boost 642 return atomic_load( p );
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
cstdatomic | 590 atomic_load(const volatile atomic_address* __a) 667 atomic_load(const volatile atomic_bool* __a) 789 atomic_load(const volatile __atomic_base<_ITp>* __a)
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
cstdatomic | 590 atomic_load(const volatile atomic_address* __a) 667 atomic_load(const volatile atomic_bool* __a) 789 atomic_load(const volatile __atomic_base<_ITp>* __a)
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
cstdatomic | 590 atomic_load(const volatile atomic_address* __a) 667 atomic_load(const volatile atomic_bool* __a) 789 atomic_load(const volatile __atomic_base<_ITp>* __a)
|