HomeSort by relevance Sort by last modified time
    Searched full:atomic_exchange (Results 1 - 25 of 26) sorted by null

1 2

  /ndk/sources/cxx-stl/llvm-libc++/test/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_exchange.pass.cpp 14 // atomic_exchange(volatile atomic<T>* obj, T desr);
18 // atomic_exchange(atomic<T>* obj, T desr);
31 assert(std::atomic_exchange(&t, T(2)) == T(1));
35 assert(std::atomic_exchange(&vt, T(4)) == T(3));
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_exchange.pass.cpp 16 // atomic_exchange(shared_ptr<T>* p, shared_ptr<T> r)
27 r = std::atomic_exchange(&p, r);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h 36 return atomic_exchange(&state_, 1, memory_order_acquire) == 0;
53 && atomic_exchange(&state_, 1, memory_order_acquire) == 0)
sanitizer_atomic_msvc.h 111 INLINE u8 atomic_exchange(volatile atomic_uint8_t *a, function in namespace:__sanitizer
124 INLINE u16 atomic_exchange(volatile atomic_uint16_t *a, function in namespace:__sanitizer
sanitizer_atomic_clang.h 89 INLINE typename T::Type atomic_exchange(volatile T *a, function in namespace:__sanitizer
sanitizer_linux.cc 554 if (atomic_exchange(m, MtxLocked, memory_order_acquire) == MtxUnlocked)
556 while (atomic_exchange(m, MtxSleeping, memory_order_acquire) != MtxUnlocked)
562 u32 v = atomic_exchange(m, MtxUnlocked, memory_order_relaxed);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
atomicfwd_c.h 137 #define atomic_exchange(__a, __m) \ macro
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
atomicfwd_c.h 137 #define atomic_exchange(__a, __m) \ macro
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
atomicfwd_c.h 137 #define atomic_exchange(__a, __m) \ macro
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
atomicfwd_c.h 137 #define atomic_exchange(__a, __m) \ macro
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
atomicfwd_c.h 137 #define atomic_exchange(__a, __m) \ macro
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 68 u32 OldColumn = __sanitizer::atomic_exchange(
  /ndk/sources/cxx-stl/llvm-libc++/include/
atomic 307 atomic_exchange(volatile atomic<T>* obj, T desr) noexcept;
311 atomic_exchange(atomic<T>* obj, T desr) noexcept;
    [all...]
memory 549 shared_ptr<T> atomic_exchange(shared_ptr<T>* p, shared_ptr<T> r);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cstdatomic 598 atomic_exchange(volatile atomic_address* __a, void* __v)
675 atomic_exchange(volatile atomic_bool* __a, bool __i)
794 atomic_exchange(volatile __atomic_base<_ITp>* __a, _ITp __i)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
cstdatomic 598 atomic_exchange(volatile atomic_address* __a, void* __v)
675 atomic_exchange(volatile atomic_bool* __a, bool __i)
794 atomic_exchange(volatile __atomic_base<_ITp>* __a, _ITp __i)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
cstdatomic 598 atomic_exchange(volatile atomic_address* __a, void* __v)
675 atomic_exchange(volatile atomic_bool* __a, bool __i)
794 atomic_exchange(volatile __atomic_base<_ITp>* __a, _ITp __i)
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
cstdatomic 598 atomic_exchange(volatile atomic_address* __a, void* __v)
675 atomic_exchange(volatile atomic_bool* __a, bool __i)
794 atomic_exchange(volatile __atomic_base<_ITp>* __a, _ITp __i)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
cstdatomic 598 atomic_exchange(volatile atomic_address* __a, void* __v)
675 atomic_exchange(volatile atomic_bool* __a, bool __i)
794 atomic_exchange(volatile __atomic_base<_ITp>* __a, _ITp __i)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
atomic 842 atomic_exchange(atomic<_ITp>* __a, _ITp __i)
847 atomic_exchange(volatile atomic<_ITp>* __a, _ITp __i)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
atomic 842 atomic_exchange(atomic<_ITp>* __a, _ITp __i)
847 atomic_exchange(volatile atomic<_ITp>* __a, _ITp __i)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
atomic 842 atomic_exchange(atomic<_ITp>* __a, _ITp __i)
847 atomic_exchange(volatile atomic<_ITp>* __a, _ITp __i)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
atomic 903 atomic_exchange(atomic<_ITp>* __a, _ITp __i) noexcept
908 atomic_exchange(volatile atomic<_ITp>* __a, _ITp __i) noexcept
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.cc 606 u8 old_chunk_state = atomic_exchange((atomic_uint8_t*)m, CHUNK_QUARANTINE,
asan_allocator2.cc 426 u8 old_chunk_state = atomic_exchange((atomic_uint8_t*)m, CHUNK_QUARANTINE,

Completed in 587 milliseconds

1 2