Searched refs:shift_reg (Results 1 – 3 of 3) sorted by relevance
/qemu/hw/sd/ |
H A D | sd.c | 351 uint8_t shift_reg = 0x00; in sd_crc7() local 356 shift_reg <<= 1; in sd_crc7() 357 if ((shift_reg >> 7) ^ ((*msg >> bit) & 1)) in sd_crc7() 358 shift_reg ^= 0x89; in sd_crc7() 361 return shift_reg; in sd_crc7()
|
/qemu/target/m68k/ |
H A D | translate.c | 3391 static inline void shift_reg(DisasContext *s, uint16_t insn, int opsize) in shift_reg() function 3499 shift_reg(s, insn, OS_BYTE); in DISAS_INSN() 3504 shift_reg(s, insn, OS_WORD); in DISAS_INSN() 3507 DISAS_INSN(shift_reg) in DISAS_INSN() argument 3509 shift_reg(s, insn, OS_LONG); in DISAS_INSN() 5955 INSN(shift_reg, e0a0, f0f0, CF_ISA_A); in register_m68k_insns() 5961 INSN(shift_reg, e0a0, f0f0, M68K); in register_m68k_insns()
|
/qemu/target/arm/tcg/ |
H A D | translate-a64.c | 7493 static void shift_reg(TCGv_i64 dst, TCGv_i64 src, int sf, in TRANS() 7544 shift_reg(dst, src, sf, shift_type, tcg_constant_i64(shift_i)); in shift_reg_imm() 8465 shift_reg(tcg_rd, tcg_rn, sf, shift_type, tcg_shift); in handle_shift_reg()
|