Home
last modified time | relevance | path

Searched refs:atomic_flag (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/
H A Dstdatomic.h163 typedef struct atomic_flag { atomic_bool _Value; } atomic_flag; argument
169 bool atomic_flag_test_and_set(volatile atomic_flag *);
170 bool atomic_flag_test_and_set_explicit(volatile atomic_flag *, memory_order);
172 _Bool atomic_flag_test_and_set(volatile atomic_flag *);
173 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *, memory_order);
175 void atomic_flag_clear(volatile atomic_flag *);
176 void atomic_flag_clear_explicit(volatile atomic_flag *, memory_order);
H A Dopencl-c.h13969 bool __ovld atomic_flag_test_and_set(volatile atomic_flag *object);
13970 bool __ovld atomic_flag_test_and_set_explicit(volatile atomic_flag *object, memory_order order);
13971 bool __ovld atomic_flag_test_and_set_explicit(volatile atomic_flag *object, memory_order order, mem…
13972 void __ovld atomic_flag_clear(volatile atomic_flag *object);
13973 void __ovld atomic_flag_clear_explicit(volatile atomic_flag *object, memory_order order);
13974 void __ovld atomic_flag_clear_explicit(volatile atomic_flag *object, memory_order order, memory_sco…
/freebsd-12.1/contrib/libc++/include/
H A Datomic60 atomic_flag(const atomic_flag&) = delete;
61 atomic_flag& operator=(const atomic_flag&) = delete;
62 atomic_flag& operator=(const atomic_flag&) volatile = delete;
63 } atomic_flag;
1748 atomic_flag(const atomic_flag&) = delete;
1749 atomic_flag& operator=(const atomic_flag&) = delete;
1750 atomic_flag& operator=(const atomic_flag&) volatile = delete;
1753 atomic_flag(const atomic_flag&);
1754 atomic_flag& operator=(const atomic_flag&);
1755 atomic_flag& operator=(const atomic_flag&) volatile;
[all …]
/freebsd-12.1/sys/sys/
H A Dstdatomic.h375 } atomic_flag; typedef
380 atomic_flag_test_and_set_explicit(volatile atomic_flag *__object, in atomic_flag_test_and_set_explicit()
387 atomic_flag_clear_explicit(volatile atomic_flag *__object, memory_order __order) in atomic_flag_clear_explicit()
395 atomic_flag_test_and_set(volatile atomic_flag *__object) in atomic_flag_test_and_set()
403 atomic_flag_clear(volatile atomic_flag *__object) in atomic_flag_clear()
/freebsd-12.1/contrib/compiler-rt/lib/builtins/
H A Datomic_flag_test_and_set.c23 _Bool atomic_flag_test_and_set(volatile atomic_flag *object) { in atomic_flag_test_and_set()
H A Datomic_flag_clear.c23 void atomic_flag_clear(volatile atomic_flag *object) { in atomic_flag_clear()
H A Datomic_flag_clear_explicit.c23 void atomic_flag_clear_explicit(volatile atomic_flag *object, in atomic_flag_clear_explicit()
H A Datomic_flag_test_and_set_explicit.c23 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object, in atomic_flag_test_and_set_explicit()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIDriverMain.cpp74 static std::atomic_flag g_interrupt_sent = ATOMIC_FLAG_INIT; in sigint_handler()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.cpp783 static std::atomic_flag g_interrupt_sent = ATOMIC_FLAG_INIT; in sigint_handler()