Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A Dstdatomic.h149 typedef struct atomic_flag { atomic_bool _Value; } atomic_flag; typedef
155 bool atomic_flag_test_and_set(volatile atomic_flag *);
156 bool atomic_flag_test_and_set_explicit(volatile atomic_flag *, memory_order);
158 _Bool atomic_flag_test_and_set(volatile atomic_flag *);
159 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *, memory_order);
161 void atomic_flag_clear(volatile atomic_flag *);
162 void atomic_flag_clear_explicit(volatile atomic_flag *, memory_order);
H A Dopencl-c.h13614 bool __ovld atomic_flag_test_and_set(volatile atomic_flag *object);
13615 void __ovld atomic_flag_clear(volatile atomic_flag *object);
13619 bool __ovld atomic_flag_test_and_set_explicit(volatile atomic_flag *object, memory_order order);
13620 void __ovld atomic_flag_clear_explicit(volatile atomic_flag *object, memory_order order);
13623 bool __ovld atomic_flag_test_and_set_explicit(volatile atomic_flag *object, memory_order order, mem…
13624 void __ovld atomic_flag_clear_explicit(volatile atomic_flag *object, memory_order order, memory_sco…
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Datomic516 atomic_flag(const atomic_flag&) = delete;
517 atomic_flag& operator=(const atomic_flag&) = delete;
518 atomic_flag& operator=(const atomic_flag&) volatile = delete;
533 } atomic_flag;
2575 atomic_flag(const atomic_flag&) = delete;
2576 atomic_flag& operator=(const atomic_flag&) = delete;
2577 atomic_flag& operator=(const atomic_flag&) volatile = delete;
2581 atomic_flag(const atomic_flag&);
2583 atomic_flag& operator=(const atomic_flag&);
2585 atomic_flag& operator=(const atomic_flag&) volatile;
[all …]
/freebsd-13.1/sys/sys/
H A Dstdatomic.h375 } atomic_flag; typedef
379 atomic_flag_test_and_set_explicit(volatile atomic_flag *__object, in atomic_flag_test_and_set_explicit()
386 atomic_flag_clear_explicit(volatile atomic_flag *__object, memory_order __order) in atomic_flag_clear_explicit()
394 atomic_flag_test_and_set(volatile atomic_flag *__object) in atomic_flag_test_and_set()
402 atomic_flag_clear(volatile atomic_flag *__object) in atomic_flag_clear()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/builtins/
H A Datomic_flag_clear.c21 void atomic_flag_clear(volatile atomic_flag *object) { in atomic_flag_clear()
H A Datomic_flag_test_and_set.c21 _Bool atomic_flag_test_and_set(volatile atomic_flag *object) { in atomic_flag_test_and_set()
H A Datomic_flag_clear_explicit.c21 void atomic_flag_clear_explicit(volatile atomic_flag *object, in atomic_flag_clear_explicit()
H A Datomic_flag_test_and_set_explicit.c21 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object, in atomic_flag_test_and_set_explicit()
/freebsd-13.1/sys/contrib/zlib/
H A Dcrc32.c180 atomic_flag begun;
/freebsd-13.1/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp704 static std::atomic_flag g_interrupt_sent = ATOMIC_FLAG_INIT; in sigint_handler()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DOpenCLBuiltins.td355 def AtomicFlag : TypedefType<"atomic_flag">;