Home
last modified time | relevance | path

Searched refs:test_and_set (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/sys/contrib/zlib/
H A Dcrc32.c216 local int test_and_set OF((int volatile *));
217 local int test_and_set(flag) in test_and_set() function
233 if (test_and_set(&state->begun))
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h102 bool test_and_set(unsigned Idx) { in test_and_set() function
531 bool test_and_set(unsigned Idx) { in test_and_set() function
H A DCoalescingBitVector.h128 void test_and_set(IndexT Index) { in test_and_set() function
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Datomic522 bool test_and_set(memory_order m = memory_order_seq_cst) volatile noexcept;
523 bool test_and_set(memory_order m = memory_order_seq_cst) noexcept;
2532 bool test_and_set(memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
2535 bool test_and_set(memory_order __m = memory_order_seq_cst) _NOEXCEPT
2622 return __o->test_and_set();
2629 return __o->test_and_set();
2636 return __o->test_and_set(__m);
2643 return __o->test_and_set(__m);
/freebsd-13.1/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp706 if (!g_interrupt_sent.test_and_set()) { in sigint_handler()