HomeSort by: relevance | last modified time | path
    Searched refs:__c11_atomic_exchange (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
atomic_flag_test_and_set.c 24 return __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST);
atomic_flag_test_and_set_explicit.c 25 return __c11_atomic_exchange(&(object)->_Value, 1, order);
atomic.c 216 *(type*)old = __c11_atomic_exchange((_Atomic(type)*)ptr, *(type*)val,\
271 return __c11_atomic_exchange((_Atomic(type)*)dest, val, model);\
  /src/external/bsd/libc++/dist/libcxxrt/src/
atomic.h 12 #if __has_builtin(__c11_atomic_exchange)
14 __c11_atomic_exchange(reinterpret_cast<_Atomic(__typeof__(val))*>(addr), val, __ATOMIC_ACQ_REL)
  /src/external/apache2/llvm/dist/clang/lib/Headers/
stdatomic.h 123 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST)
124 #define atomic_exchange_explicit __c11_atomic_exchange
164 #define atomic_flag_test_and_set(object) __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST)
165 #define atomic_flag_test_and_set_explicit(object, order) __c11_atomic_exchange(&(object)->_Value, 1, order)
  /src/external/mpl/bind/include/isc/
lint-atomic.h 19 #define __c11_atomic_exchange(a, b, m) (*(a) = (b)) macro

Completed in 23 milliseconds