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

/freebsd-current/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp108 enum State : u32 { Unlocked = 0, Locked = 1, Sleeping = 2 };
112 return atomic_compare_exchange_strong(&M, Unlocked, Locked,
113 memory_order_acquire) == Unlocked;
118 u32 V = atomic_compare_exchange_strong(&M, Unlocked, Locked,
120 if (V == Unlocked)
124 while (V != Unlocked) {
133 atomic_store(&M, Unlocked, memory_order_release);
140 CHECK(atomic_load(&M, memory_order_acquire) != Unlocked);
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp37 Unlocked, enumerator in enum:__anon888::LockState::Kind
47 static LockState getUnlocked() { return LockState(Unlocked); }
59 bool isUnlocked() const { return K == Unlocked; }
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp1122 Unlocked,
1141 return {TestOnly, Unlocked, false};
1143 return {Complement, Unlocked, false};
1145 return {Reset, Unlocked, false};
1147 return {Set, Unlocked, false};
1155 return {TestOnly, Unlocked, true};
1157 return {Complement, Unlocked, true};
1159 return {Reset, Unlocked, true};
1161 return {Set, Unlocked, true};
1204 if (BT.Interlocking != BitTest::Unlocked)
[all...]

Completed in 183 milliseconds