Searched refs:Unlocked (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | linux.cpp | 108 enum State : u32 { Unlocked = 0, Locked = 1, Sleeping = 2 }; in tryLock() 112 return atomic_compare_exchange_strong(&M, Unlocked, Locked, in lockSlow() 113 memory_order_acquire) == Unlocked; in lockSlow() 118 u32 V = atomic_compare_exchange_strong(&M, Unlocked, Locked, in lockSlow() 120 if (V == Unlocked) in lockSlow() 124 while (V != Unlocked) { in unlock() 133 atomic_store(&M, Unlocked, memory_order_release); in assertHeldImpl() 140 CHECK(atomic_load(&M, memory_order_acquire) != Unlocked); in getMonotonicTime() 103 enum State : u32 { Unlocked = 0, Locked = 1, Sleeping = 2 }; global() enumerator
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | PthreadLockChecker.cpp | 37 Unlocked, enumerator 47 static LockState getUnlocked() { return LockState(Unlocked); } in getUnlocked() 59 bool isUnlocked() const { return K == Unlocked; } in isUnlocked()
|
/freebsd/sys/dev/syscon/ |
H A D | syscon_if.m | 97 * Unlocked verion of access function
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 1131 Unlocked, enumerator 1151 return {TestOnly, Unlocked, false}; in decodeBitTestBuiltin() 1153 return {Complement, Unlocked, false}; in decodeBitTestBuiltin() 1155 return {Reset, Unlocked, false}; in decodeBitTestBuiltin() 1157 return {Set, Unlocked, false}; in decodeBitTestBuiltin() 1165 return {TestOnly, Unlocked, true}; in decodeBitTestBuiltin() 1167 return {Complement, Unlocked, true}; in decodeBitTestBuiltin() 1169 return {Reset, Unlocked, true}; in decodeBitTestBuiltin() 1171 return {Set, Unlocked, true}; in decodeBitTestBuiltin() 1214 if (BT.Interlocking != BitTest::Unlocked) in EmitX86BitTestIntrinsic() [all …]
|