Lines Matching refs:shift_t
25 ARM_ShifterType &shift_t) { in DecodeImmShift() argument
30 shift_t = SRType_LSL; in DecodeImmShift()
33 shift_t = SRType_LSR; in DecodeImmShift()
36 shift_t = SRType_ASR; in DecodeImmShift()
40 shift_t = SRType_RRX; in DecodeImmShift()
43 shift_t = SRType_ROR; in DecodeImmShift()
47 shift_t = SRType_Invalid; in DecodeImmShift()
54 ARM_ShifterType &shift_t) { in DecodeImmShiftThumb() argument
57 shift_t); in DecodeImmShiftThumb()
63 ARM_ShifterType &shift_t) { in DecodeImmShiftARM() argument
64 return DecodeImmShift(Bits32(opcode, 6, 5), Bits32(opcode, 11, 7), shift_t); in DecodeImmShiftARM()
67 static inline uint32_t DecodeImmShift(const ARM_ShifterType shift_t, in DecodeImmShift() argument
70 return DecodeImmShift(shift_t, imm5, dont_care); in DecodeImmShift()