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

1 2 3 4 5 6 7

  /external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_store.pass.cpp 17 // atomic_store(volatile atomic<T>* obj, T desr);
21 // atomic_store(atomic<T>* obj, T desr);
33 std::atomic_store(&t, T(1));
36 std::atomic_store(&vt, T(2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_store.pass.cpp 14 // atomic_store(volatile atomic<T>* obj, T desr);
18 // atomic_store(atomic<T>* obj, T desr);
30 std::atomic_store(&t, T(1));
33 std::atomic_store(&vt, T(2));
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_persistent_allocator.h 56 atomic_store(&region_pos, 0, memory_order_relaxed);
60 atomic_store(&region_end, mem + allocsz, memory_order_release);
61 atomic_store(&region_pos, mem, memory_order_release);
sanitizer_quarantine.h 52 atomic_store(&max_size_, size, memory_order_release);
53 atomic_store(&min_size_, size / 10 * 9,
146 atomic_store(&c->size_, 0, memory_order_relaxed);
168 atomic_store(&size_, Size() + add, memory_order_relaxed);
171 atomic_store(&size_, Size() - sub, memory_order_relaxed);
sanitizer_addrhashmap.h 260 atomic_store(&b->add, (uptr)add, memory_order_relaxed);
272 atomic_store(&b->add, (uptr)add1, memory_order_relaxed);
295 atomic_store(&c->addr, h->addr_, memory_order_release);
300 atomic_store(&c->addr, 0, memory_order_release);
310 atomic_store(&c->addr, addr1, memory_order_release);
311 atomic_store(&c1->addr, 0, memory_order_release);
319 atomic_store(&c1->addr, 0, memory_order_relaxed);
sanitizer_mutex.h 26 atomic_store(&state_, 0, memory_order_relaxed);
40 atomic_store(&state_, 0, memory_order_release);
96 atomic_store(&state_, kUnlocked, memory_order_relaxed);
sanitizer_atomic.h 77 atomic_store(a, v, memory_order_relaxed);
sanitizer_lfstack.h 29 atomic_store(&head_, 0, memory_order_relaxed);
sanitizer_linux_libcdep.cc 246 atomic_store(&kThreadDescriptorSize, val, memory_order_relaxed);
254 atomic_store(&kThreadDescriptorSize, val, memory_order_relaxed);
259 atomic_store(&kThreadDescriptorSize, val, memory_order_relaxed);
263 atomic_store(&kThreadDescriptorSize, val, memory_order_relaxed);
524 atomic_store(&android_log_initialized, 1, memory_order_release);
sanitizer_coverage_libcdep.cc 59 return atomic_store(&coverage_counter, 0, memory_order_relaxed);
60 return atomic_store(&caller_callee_counter, 0, memory_order_relaxed);
205 atomic_store(&pc_array_index, 0, memory_order_relaxed);
207 atomic_store(&pc_array_size, 0, memory_order_relaxed);
209 atomic_store(&pc_array_size, kPcArrayMaxSize, memory_order_relaxed);
214 atomic_store(&cc_array_size, kCcArrayMaxSize, memory_order_relaxed);
215 atomic_store(&cc_array_index, 0, memory_order_relaxed);
264 atomic_store(&pc_array_index, 0, memory_order_relaxed);
332 atomic_store(&pc_array_size, size, memory_order_release);
407 atomic_store(atomic_guard, -guard_value, memory_order_relaxed)
    [all...]
sanitizer_atomic_clang_other.h 63 INLINE void atomic_store(volatile T *a, typename T::Type v, memory_order mo) { function in namespace:__sanitizer
sanitizer_libignore.cc 84 atomic_store(&loaded_count_, idx + 1, memory_order_release);
sanitizer_allocator.h 218 atomic_store(&stats_[i], v, memory_order_relaxed);
223 atomic_store(&stats_[i], v, memory_order_relaxed);
227 atomic_store(&stats_[i], v, memory_order_relaxed);
654 atomic_store(&map1_[idx], reinterpret_cast<uptr>(res),
    [all...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_store.pass.cpp 23 // atomic_store(shared_ptr<T>* p, shared_ptr<T> r)
34 std::atomic_store(&p, r);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared.atomic/
atomic_store.pass.cpp 21 // atomic_store(shared_ptr<T>* p, shared_ptr<T> r)
32 std::atomic_store(&p, r);
  /bionic/tests/
stdatomic_test.cpp 95 TEST(stdatomic, atomic_store) {
97 atomic_store(&i, 123);
105 atomic_store(&i, 123);
114 atomic_store(&i, 123);
120 atomic_store(&i, 123);
126 atomic_store(&i, 123);
132 atomic_store(&i, 123);
  /external/llvm/test/CodeGen/PowerPC/
atomic-2.ll 83 define void @atomic_store(i64* %mem, i64 %val) nounwind {
85 ; CHECK: @atomic_store
  /system/extras/memory_replay/
Pointers.cpp 57 atomic_store(&data->key_pointer, key_pointer);
72 atomic_store(&data->key_pointer, uintptr_t(0));
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 220 atomic_store(&p->tid, 0, memory_order_release);
239 atomic_store(&p.tid, 0, memory_order_relaxed);
244 atomic_store(&p.tid, tid, memory_order_release);
lsan_allocator.cc 78 atomic_store(reinterpret_cast<atomic_uint8_t *>(m), 1, memory_order_relaxed);
85 atomic_store(reinterpret_cast<atomic_uint8_t *>(m), 0, memory_order_relaxed);
  /external/compiler-rt/lib/asan/
asan_stack.cc 23 atomic_store(&malloc_context_size, size, memory_order_release);
  /external/compiler-rt/lib/tsan/rtl/
tsan_fd.cc 53 atomic_store(&s->rc, 1, memory_order_relaxed);
123 atomic_store(&fdctx.globsync.rc, (u64)-1, memory_order_relaxed);
124 atomic_store(&fdctx.filesync.rc, (u64)-1, memory_order_relaxed);
125 atomic_store(&fdctx.socksync.rc, (u64)-1, memory_order_relaxed);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_mutex.cc 191 atomic_store(&singleton, (uintptr_t)&val, memory_order_release);
212 atomic_store(&flag, 0, memory_order_release);
tsan_test_util_posix.cc 386 atomic_store(&impl->event, 0, memory_order_release);
390 atomic_store(&impl->event, 0, memory_order_release);
401 atomic_store(&event, (uintptr_t)e, memory_order_release);
411 atomic_store(&impl_->event, 0, memory_order_relaxed);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_atomic_test.cc 47 atomic_store(&val.a, (Type)v, store_mo);

Completed in 549 milliseconds

1 2 3 4 5 6 7