Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp3967 (BitIsSet(opcode, 14) && BitIsSet(opcode, 15))) in EmulateLDM()
4215 (BitIsSet(opcode, 14) && BitIsSet(opcode, 15))) in EmulateLDMDB()
10717 if (BitIsSet(t, 0)) in EmulateLDRDImmediate()
10838 if (BitIsSet(t, 0)) in EmulateLDRDRegister()
10992 if (BitIsSet(t, 0)) in EmulateSTRDImm()
11120 if (BitIsSet(t, 0)) in EmulateSTRDReg()
14080 if (BitIsSet(bytemask, 3)) { in CPSRWriteByInstr()
14086 if (BitIsSet(bytemask, 2)) { in CPSRWriteByInstr()
14090 if (BitIsSet(bytemask, 1)) { in CPSRWriteByInstr()
14098 if (BitIsSet(bytemask, 0)) { in CPSRWriteByInstr()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DInstructionUtils.h90 static inline bool BitIsSet(const uint64_t value, const uint64_t bit) { in BitIsSet() function
108 if (BitIsSet(value, msbit)) { in SignedBits()
H A DARMUtils.h145 bool negative = BitIsSet(value, 31); in ASR_C()