Home
last modified time | relevance | path

Searched refs:BitIsClear (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp2496 wback = (BitIsClear(opcode, 24) || BitIsSet(opcode, 21)); in EmulateSTRRtSP()
3933 wback = BitIsClear(registers, n); in EmulateLDM()
4022 if (wback && BitIsClear(registers, n)) { in EmulateLDM()
4136 if (wback && BitIsClear(registers, n)) { in EmulateLDMDA()
4272 if (wback && BitIsClear(registers, n)) { in EmulateLDMDB()
4384 if (wback && BitIsClear(registers, n)) { in EmulateLDMIB()
4484 if (BitIsClear(opcode, 10) && BitIsClear(opcode, 8)) in EmulateLDRRtRnImm()
5191 (BitIsClear(opcode, 10) && BitIsClear(opcode, 8))) in EmulateSTRThumb()
5243 (BitIsClear(address, 1) && BitIsClear(address, 0))) { in EmulateSTRThumb()
5369 wback = (BitIsClear(opcode, 24) || BitIsSet(opcode, 21)); in EmulateSTRRegister()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DInstructionUtils.h93 static inline bool BitIsClear(const uint64_t value, const uint64_t bit) { in BitIsClear() function