Home
last modified time | relevance | path

Searched refs:Locked (Results 1 – 19 of 19) sorted by relevance

/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
DLocked.cpp140 static constexpr bool Locked = true; in TEST_F() local
171 TestImplAddrReg(0xa2b34567, Dst1, 0x0507ddee, Locked, Size); \ in TEST_F()
203 static constexpr bool Locked = true; in TEST_F() local
216 __ xadd(IceType_i8, Address::Absolute(0x1FF00), Encoded_GPR_r14(), Locked); in TEST_F()
235 __ xadd(IceType_i16, Address::Absolute(0x1FF00), Encoded_GPR_r14(), Locked); in TEST_F()
254 __ xadd(IceType_i32, Address::Absolute(0x1FF00), Encoded_GPR_r14(), Locked); in TEST_F()
288 static constexpr bool Locked = true; in TEST_F() local
325 TestImpl(0x98987676543210ull, 0x1, 0x98987676543210ull, Locked); in TEST_F()
327 TestImpl(0x98987676543210ull, 0x1, 0x98987676543211ull, Locked); in TEST_F()
334 static constexpr bool Locked = true; in TEST_F() local
[all …]
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
DLocked.cpp140 static constexpr bool Locked = true; in TEST_F() local
173 TestImplAddrReg(0xa2b34567, Dst1, 0x0507ddee, Locked, Size); \ in TEST_F()
199 static constexpr bool Locked = true; in TEST_F() local
212 GPRRegister::Encoded_Reg_esi, Locked); in TEST_F()
230 GPRRegister::Encoded_Reg_esi, Locked); in TEST_F()
248 GPRRegister::Encoded_Reg_esi, Locked); in TEST_F()
259 static constexpr bool Locked = true; in TEST_F() local
298 TestImpl(0x98987676543210ull, 0x1, 0x98987676543210ull, Locked); in TEST_F()
300 TestImpl(0x98987676543210ull, 0x1, 0x98987676543211ull, Locked); in TEST_F()
307 static constexpr bool Locked = true; in TEST_F() local
[all …]
/external/llvm/unittests/Support/
DLockFileManagerTest.cpp78 LockFileManager Locked(LockedFile); in TEST() local
79 EXPECT_EQ(LockFileManager::LFS_Owned, Locked.getState()); in TEST()
109 LockFileManager Locked(LockedFile); in TEST() local
110 EXPECT_EQ(LockFileManager::LFS_Owned, Locked.getState()); in TEST()
/external/python/cpython2/Demo/pdist/
Dcvslock.py106 class Locked(Error): class
175 raise Locked(st)
237 except Locked, instance:
/external/clang/lib/StaticAnalyzer/Checkers/
DPthreadLockChecker.cpp29 enum Kind { Destroyed, Locked, Unlocked } K; enumerator
35 static LockState getLocked() { return LockState(Locked); } in getLocked()
43 bool isLocked() const { return K == Locked; } in isLocked()
/external/clang/lib/Frontend/
DCompilerInstance.cpp1085 llvm::LockFileManager Locked(ModuleFileName); in compileAndLoadModule() local
1086 switch (Locked) { in compileAndLoadModule()
1089 << Module->Name << Locked.getErrorMessage(); in compileAndLoadModule()
1104 switch (Locked.waitForUnlock()) { in compileAndLoadModule()
1114 Locked.unsafeRemoveLockFile(); in compileAndLoadModule()
1127 Locked == llvm::LockFileManager::LFS_Shared) { in compileAndLoadModule()
/external/autotest/frontend/afe/doctests/
D001_rpc_test.txt103 >>> rpc_interface.add_host(hostname='ipaj1', locked=True, lock_reason='Locked device on creation')
124 ... 'lock_reason': 'Locked device on creation'}]
355 ... update_data={'locked': True, 'lock_reason': 'Locked for testing'})
476 ... 'lock_reason': 'Locked for testing',
/external/swiftshader/third_party/subzero/src/
DIceInstX86BaseImpl.h215 bool Locked) in InstX86Cmpxchg() argument
218 Locked) { in InstX86Cmpxchg()
230 Variable *Ebx, bool Locked) in InstX86Cmpxchg8b() argument
232 nullptr, Locked) { in InstX86Cmpxchg8b()
371 Variable *Source, bool Locked) in InstX86Xadd() argument
373 Func, InstX86Base::Xadd, 2, llvm::dyn_cast<Variable>(Dest), Locked) { in InstX86Xadd()
1596 if (this->Locked) { in emit()
1619 Asm->cmpxchg(Ty, Addr, Reg, this->Locked); in emitIAS()
1627 if (this->Locked) { in dump()
1640 if (this->Locked) { in emit()
[all …]
DIceTargetLoweringX86Base.h606 bool Locked) { in _cmpxchg() argument
609 Locked); in _cmpxchg()
616 Variable *Ecx, Variable *Ebx, bool Locked) { in _cmpxchg8b() argument
619 Locked); in _cmpxchg8b()
1016 void _xadd(Operand *Dest, Variable *Src, bool Locked) { in _xadd() argument
1018 Context.insert<typename Traits::Insts::Xadd>(Dest, Src, Locked); in _xadd()
DIceInstX86Base.h2386 bool Locked;
2389 SizeT Maxsrcs, Variable *Dest, bool Locked) in InstX86BaseLockable()
2390 : InstX86Base(Func, Kind, Maxsrcs, Dest), Locked(Locked) { in InstX86BaseLockable()
2393 this->HasSideEffects = Locked; in InstX86BaseLockable()
2528 Variable *Desired, bool Locked) { in create()
2530 InstX86Cmpxchg(Func, DestOrAddr, Eax, Desired, Locked); in create()
2541 Variable *Desired, bool Locked);
2557 Variable *Ebx, bool Locked) { in create()
2559 InstX86Cmpxchg8b(Func, Dest, Edx, Eax, Ecx, Ebx, Locked); in create()
2570 Variable *Eax, Variable *Ecx, Variable *Ebx, bool Locked);
[all …]
DIceAssemblerX86Base.h718 void cmpxchg(Type Ty, const Address &address, GPRRegister reg, bool Locked);
719 void cmpxchg8b(const Address &address, bool Locked);
720 void xadd(Type Ty, const Address &address, GPRRegister reg, bool Locked);
DIceTargetLoweringX86BaseImpl.h4659 constexpr bool Locked = true;
4660 _cmpxchg8b(Addr, T_edx, T_eax, T_ecx, T_ebx, Locked);
4688 constexpr bool Locked = true;
4689 _cmpxchg(Addr, T_eax, DesiredReg, Locked);
4790 constexpr bool Locked = true;
4793 _xadd(Addr, T, Locked);
4805 constexpr bool Locked = true;
4809 _xadd(Addr, T, Locked);
4911 constexpr bool Locked = true;
4912 _cmpxchg8b(Addr, T_edx, T_eax, T_ecx, T_ebx, Locked);
[all …]
DIceAssemblerX86BaseImpl.h3700 GPRRegister reg, bool Locked) { in cmpxchg() argument
3704 if (Locked) in cmpxchg()
3718 bool Locked) { in cmpxchg8b() argument
3720 if (Locked) in cmpxchg8b()
3731 GPRRegister reg, bool Locked) { in xadd() argument
3735 if (Locked) in xadd()
/external/clang/lib/Serialization/
DGlobalModuleIndex.cpp777 llvm::LockFileManager Locked(IndexPath); in writeIndex() local
778 switch (Locked) { in writeIndex()
/external/swiftshader/third_party/subzero/
DMakefile.standalone369 AssemblerX8632/Locked.cpp \
377 AssemblerX8664/Locked.cpp \
/external/avb/
DREADME.md23 + [Locked and Unlocked mode](#Locked-and-Unlocked-mode)
576 ## Locked and Unlocked mode
/external/libogg/doc/
Drfc3533.txt754 Locked Bag 17
/external/wpa_supplicant_8/hostapd/
DChangeLog466 - Add special AP Setup Locked mode to allow read only ER.
/external/wpa_supplicant_8/wpa_supplicant/
DChangeLog932 - Add special AP Setup Locked mode to allow read only ER.