Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/Utility/
DInstructionUtils.h55 static inline void SetBit32(uint32_t &bits, const uint32_t bit, in SetBit32() function
/external/llvm-project/lldb/source/Plugins/Instruction/ARM/
DEmulateInstructionARM.cpp1582 SetBit32(m_new_inst_cpsr, CPSR_N_POS, Bit32(result, 31)); in EmulateMUL()
1583 SetBit32(m_new_inst_cpsr, CPSR_Z_POS, result == 0 ? 1 : 0); in EmulateMUL()
14296 SetBit32(m_new_inst_cpsr, CPSR_N_POS, Bit32(result, CPSR_N_POS)); in WriteFlags()
14297 SetBit32(m_new_inst_cpsr, CPSR_Z_POS, result == 0 ? 1 : 0); in WriteFlags()
14299 SetBit32(m_new_inst_cpsr, CPSR_C_POS, carry); in WriteFlags()
14301 SetBit32(m_new_inst_cpsr, CPSR_V_POS, overflow); in WriteFlags()