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

1 2

  /external/compiler-rt/test/tsan/
bench_release_only.cc 12 __atomic_store_n(&x[tid * kStride], 0, __ATOMIC_RELEASE);
18 __atomic_store_n(&x[i * kStride], 0, __ATOMIC_RELEASE);
bench_acquire_only.cc 14 __atomic_store_n(&x, 0, __ATOMIC_RELEASE);
bench_single_writer.cc 11 __atomic_store_n(&x, 0, __ATOMIC_RELEASE);
ignore_lib_lib.h 21 __atomic_store_n(&mem, malloc(len), __ATOMIC_RELEASE);
ignore_malloc.cc 30 __atomic_store_n(&g, p, __ATOMIC_RELAXED);
atomic_norace.cc 26 __atomic_store_n(p, 1, __ATOMIC_SEQ_CST);
bench.h 57 __atomic_store_n(&grow_clock_var, 0, __ATOMIC_RELEASE);
atomic_race.cc 29 __atomic_store_n(p, 1, __ATOMIC_SEQ_CST);
  /external/skia/src/ports/
SkBarriers_tsan.h 22 return __atomic_store_n(ptr, val, __ATOMIC_RELEASE);
  /external/chromium_org/third_party/skia/src/ports/
SkBarriers_tsan.h 28 return __atomic_store_n(ptr, val, __ATOMIC_RELEASE);
  /external/clang/test/Sema/
atomic-ops.c 111 __atomic_store_n(I, 4, memory_order_release);
112 __atomic_store_n(I, 4.0, memory_order_release);
113 __atomic_store_n(I, P, memory_order_release); // expected-warning {{parameter of type 'int'}}
114 __atomic_store_n(i, 1, memory_order_release); // expected-error {{must be a pointer to integer or pointer}}
115 __atomic_store_n(s1, *s2, memory_order_release); // expected-error {{must be a pointer to integer or pointer}} member in struct:s2
287 (void)__atomic_store_n(p, val, memory_order_relaxed);
288 (void)__atomic_store_n(p, val, memory_order_acquire); // expected-warning {{memory order argument to atomic operation is invalid}}
289 (void)__atomic_store_n(p, val, memory_order_consume); // expected-warning {{memory order argument to atomic operation is invalid}}
290 (void)__atomic_store_n(p, val, memory_order_release);
291 (void)__atomic_store_n(p, val, memory_order_acq_rel); // expected-warning {{memory order argument to atomic operation is (…)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
atomic_base.h 474 __atomic_store_n(&_M_i, __i, __m);
486 __atomic_store_n(&_M_i, __i, __m);
783 __atomic_store_n(&_M_p, __p, __m);
795 __atomic_store_n(&_M_p, __p, __m);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
atomic_base.h 474 __atomic_store_n(&_M_i, __i, __m);
486 __atomic_store_n(&_M_i, __i, __m);
783 __atomic_store_n(&_M_p, __p, __m);
795 __atomic_store_n(&_M_p, __p, __m);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
atomic_base.h 438 __atomic_store_n(&_M_i, __i, __m);
449 __atomic_store_n(&_M_i, __i, __m);
733 __atomic_store_n(&_M_p, __p, __m);
744 __atomic_store_n(&_M_p, __p, __m);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
atomic_base.h 438 __atomic_store_n(&_M_i, __i, __m);
449 __atomic_store_n(&_M_i, __i, __m);
733 __atomic_store_n(&_M_p, __p, __m);
744 __atomic_store_n(&_M_p, __p, __m);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
atomic_base.h 474 __atomic_store_n(&_M_i, __i, __m);
486 __atomic_store_n(&_M_i, __i, __m);
783 __atomic_store_n(&_M_p, __p, __m);
795 __atomic_store_n(&_M_p, __p, __m);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
atomic_base.h 478 __atomic_store_n(&_M_i, __i, __m);
490 __atomic_store_n(&_M_i, __i, __m);
787 __atomic_store_n(&_M_p, __p, __m);
799 __atomic_store_n(&_M_p, __p, __m);
  /external/clang/test/CodeGen/
big-atomic-ops.c 53 __atomic_store_n(i, 1, memory_order_seq_cst);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
sync-builtins.def 339 "__atomic_store_n",
  /development/ndk/platforms/android-L/include/
stdatomic.h 291 __atomic_store_n(&(object)->__val, desired, order)
  /bionic/libc/include/
stdatomic.h 445 __atomic_store_n(&(object)->__val, desired, order)
  /prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/
stdatomic.h 445 __atomic_store_n(&(object)->__val, desired, order)
  /prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/
stdatomic.h 445 __atomic_store_n(&(object)->__val, desired, order)
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/
stdatomic.h 445 __atomic_store_n(&(object)->__val, desired, order)
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/
stdatomic.h 445 __atomic_store_n(&(object)->__val, desired, order)

Completed in 1012 milliseconds

1 2