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

1 2 3

  /external/compiler-rt/test/tsan/
stack_sync_reuse.cc 28 __atomic_store_n(syncp, 1, __ATOMIC_RELEASE);
29 __atomic_store_n(&syncp, 0, __ATOMIC_RELAXED);
37 __atomic_store_n(&s, 0, __ATOMIC_RELAXED);
38 __atomic_store_n(&syncp, &s, __ATOMIC_RELEASE);
50 __atomic_store_n(&addr, &s, __ATOMIC_RELAXED);
51 __atomic_store_n(&s, 0, __ATOMIC_RELAXED);
bench_release_only.cc 15 __atomic_store_n(&x[tid * kStride], 0, __ATOMIC_RELEASE);
21 __atomic_store_n(&x[i * kStride], 0, __ATOMIC_RELEASE);
bench_acquire_only.cc 17 __atomic_store_n(&x, 0, __ATOMIC_RELEASE);
ignore_lib_lib.h 21 __atomic_store_n(&mem, malloc(len), __ATOMIC_RELEASE);
signal_sync2.cc 32 __atomic_store_n(&ready[pos], 1, __ATOMIC_RELEASE);
37 __atomic_store_n(&process_signals, 1, __ATOMIC_RELAXED);
70 __atomic_store_n(&done, 1, __ATOMIC_RELAXED);
atomic_free3.cc 7 __atomic_store_n((int*)a, 1, __ATOMIC_RELAXED);
bench_single_writer.cc 14 __atomic_store_n(&x, 0, __ATOMIC_RELEASE);
java_volatile.cc 28 __atomic_store_n((int*)lockaddr, 1, __ATOMIC_RELAXED);
34 __atomic_store_n((int*)lockaddr, 1, __ATOMIC_RELAXED);
ignore_malloc.cc 27 __atomic_store_n(&g, p, __ATOMIC_RELAXED);
atomic_norace.cc 24 __atomic_store_n(p, 1, __ATOMIC_SEQ_CST);
bench.h 57 __atomic_store_n(&grow_clock_var, 0, __ATOMIC_RELEASE);
java_heap_init.cc 15 __atomic_store_n((int*)jheap, 1, __ATOMIC_RELEASE);
large_malloc_meta.cc 19 __atomic_store_n(&p[i], 1, __ATOMIC_RELEASE);
signal_reset.cc 66 __atomic_store_n(&stop, 1, __ATOMIC_RELAXED);
restore_stack.cc 15 __atomic_store_n(&x, 1, __ATOMIC_RELEASE);
atomic_race.cc 27 __atomic_store_n(p, 1, __ATOMIC_SEQ_CST);
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_generic_gcc.h 78 __atomic_store_n(ptr, value, __ATOMIC_RELAXED);
86 __atomic_store_n(ptr, value, __ATOMIC_SEQ_CST);
90 __atomic_store_n(ptr, value, __ATOMIC_RELEASE);
108 __atomic_store_n(ptr, value, __ATOMIC_RELEASE);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_generic_gcc.h 78 __atomic_store_n(ptr, value, __ATOMIC_RELAXED);
86 __atomic_store_n(ptr, value, __ATOMIC_SEQ_CST);
90 __atomic_store_n(ptr, value, __ATOMIC_RELEASE);
108 __atomic_store_n(ptr, value, __ATOMIC_RELEASE);
  /external/v8/src/base/
atomicops_internals_portable.h 90 __atomic_store_n(ptr, value, __ATOMIC_RELAXED);
94 __atomic_store_n(ptr, value, __ATOMIC_RELAXED);
98 __atomic_store_n(ptr, value, __ATOMIC_RELEASE);
153 __atomic_store_n(ptr, value, __ATOMIC_RELAXED);
157 __atomic_store_n(ptr, value, __ATOMIC_RELEASE);
  /external/libcxx/src/include/
atomic_support.h 17 && __has_builtin(__atomic_store_n) \
60 __atomic_store_n(__dest, __val, __order);
67 __atomic_store_n(__dest, __val, _AO_Relaxed);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/include/
atomic_support.h 17 && __has_builtin(__atomic_store_n) \
59 __atomic_store_n(__dest, __val, __order);
66 __atomic_store_n(__dest, __val, _AO_Relaxed);
  /external/ltp/m4/
ltp-atomic.m4 22 __atomic_store_n(&i, 0, __ATOMIC_RELAXED);
  /external/clang/test/Sema/
atomic-ops.c 132 __atomic_store_n(I, 4, memory_order_release);
133 __atomic_store_n(I, 4.0, memory_order_release);
134 __atomic_store_n(CI, 4, memory_order_release); // expected-error {{address argument to atomic operation must be a pointer to non-const type ('const int *' invalid)}}
135 __atomic_store_n(I, P, memory_order_release); // expected-warning {{parameter of type 'int'}}
136 __atomic_store_n(i, 1, memory_order_release); // expected-error {{must be a pointer to integer or pointer}}
137 __atomic_store_n(s1, *s2, memory_order_release); // expected-error {{must be a pointer to integer or pointer}} member in struct:s2
138 __atomic_store_n(I, I, memory_order_release); // expected-warning {{incompatible pointer to integer conversion passing 'int *' to parameter of type 'int'; dereference with *}}
386 (void)__atomic_store_n(p, val, memory_order_relaxed);
387 (void)__atomic_store_n(p, val, memory_order_acquire); // expected-warning {{memory order argument to atomic operation is invalid}}
388 (void)__atomic_store_n(p, val, memory_order_consume); // expected-warning {{memory order argument to atomic operation is (…)
    [all...]
  /external/honggfuzz/libcommon/
util.h 44 #define ATOMIC_SET(x, y) __atomic_store_n(&(x), y, __ATOMIC_SEQ_CST)
45 #define ATOMIC_CLEAR(x) __atomic_store_n(&(x), 0, __ATOMIC_SEQ_CST)
  /external/compiler-rt/test/msan/
fork.cc 72 __atomic_store_n(&done, 1, __ATOMIC_RELAXED);

Completed in 272 milliseconds

1 2 3