HomeSort by relevance Sort by last modified time
    Searched refs:atomic_fetch_or (Results 1 - 25 of 35) sorted by null

1 2

  /external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_fetch_or.pass.cpp 16 // atomic_fetch_or(volatile atomic<Integral>* obj, Integral op);
20 // atomic_fetch_or(atomic<Integral>* obj, Integral op);
35 assert(std::atomic_fetch_or(&t, T(2)) == T(1));
42 assert(std::atomic_fetch_or(&t, T(2)) == T(3));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_fetch_or.pass.cpp 16 // atomic_fetch_or(volatile atomic<Integral>* obj, Integral op);
20 // atomic_fetch_or(atomic<Integral>* obj, Integral op);
35 assert(std::atomic_fetch_or(&t, T(2)) == T(1));
42 assert(std::atomic_fetch_or(&t, T(2)) == T(3));
  /bionic/tests/
stdatomic_test.cpp 164 TEST(stdatomic, atomic_fetch_or) {
166 ASSERT_EQ(0x100, atomic_fetch_or(&i, 0x020));
  /external/clang/lib/Headers/
stdatomic.h 152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
stdatomic.h 152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) macro
  /prebuilts/clang/host/linux-x86/clang-4479392/lib64/clang/5.0.2/include/
stdatomic.h 152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) macro
  /prebuilts/sdk/renderscript/clang-include/
stdatomic.h 152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) macro
  /bionic/libc/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-4579689/lib64/clang/6.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-4630689/lib64/clang/6.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-4639204/lib64/clang/6.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/darwin-x86/clang-4691093/lib64/clang/6.0.2/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-3859424/lib64/clang/4.0/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-4053586/lib64/clang/5.0/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-4393122/lib64/clang/5.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-4579689/lib64/clang/6.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-4630689/lib64/clang/6.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-4639204/lib64/clang/6.0.1/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /prebuilts/clang/host/linux-x86/clang-4691093/lib64/clang/6.0.2/include/
stdatomic.h 77 using std::atomic_fetch_or;
488 #define atomic_fetch_or(object, operand) \
  /external/clang/test/CodeGen/
atomic-ops.c 106 return atomic_fetch_or(i, 1);

Completed in 566 milliseconds

1 2