Searched refs:rotateValue (Results 1 - 2 of 2) sorted by relevance

/gem5/src/arch/arm/insts/
H A Dpred_inst.hh52 rotate_imm(uint32_t immValue, uint32_t rotateValue) argument
54 rotateValue &= 31;
55 return rotateValue == 0 ? immValue :
56 (immValue >> rotateValue) | (immValue << (32 - rotateValue));
/gem5/src/arch/power/insts/
H A Dinteger.hh168 rotateValue(uint32_t rs, uint32_t shift) const function in class:PowerISA::IntRotateOp

Completed in 6 milliseconds