Home
last modified time | relevance | path

Searched refs:Unlocked (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/
Dlinux.cpp102 enum State : u32 { Unlocked = 0, Locked = 1, Sleeping = 2 }; enumerator
106 return atomic_compare_exchange(&M, Unlocked, Locked) == Unlocked; in tryLock()
111 u32 V = atomic_compare_exchange(&M, Unlocked, Locked); in lockSlow()
112 if (V == Unlocked) in lockSlow()
116 while (V != Unlocked) { in lockSlow()
125 atomic_store(&M, Unlocked, memory_order_release); in unlock()
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
DPthreadLockChecker.cpp37 Unlocked, enumerator
47 static LockState getUnlocked() { return LockState(Unlocked); } in getUnlocked()
59 bool isUnlocked() const { return K == Unlocked; } in isUnlocked()
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGBuiltin.cpp835 Unlocked, enumerator
854 return {TestOnly, Unlocked, false}; in decodeBitTestBuiltin()
856 return {Complement, Unlocked, false}; in decodeBitTestBuiltin()
858 return {Reset, Unlocked, false}; in decodeBitTestBuiltin()
860 return {Set, Unlocked, false}; in decodeBitTestBuiltin()
868 return {TestOnly, Unlocked, true}; in decodeBitTestBuiltin()
870 return {Complement, Unlocked, true}; in decodeBitTestBuiltin()
872 return {Reset, Unlocked, true}; in decodeBitTestBuiltin()
874 return {Set, Unlocked, true}; in decodeBitTestBuiltin()
917 if (BT.Interlocking != BitTest::Unlocked) in EmitX86BitTestIntrinsic()
[all …]