Lines Matching refs:uint32_t
13 static inline uint32_t get_ptreg(struct pt_regs *regs, uint32_t rx) in get_ptreg()
15 return rx == 15 ? regs->lr : *((uint32_t *)&(regs->a0) - 2 + rx); in get_ptreg()
18 static inline void put_ptreg(struct pt_regs *regs, uint32_t rx, uint32_t val) in put_ptreg()
23 *((uint32_t *)&(regs->a0) - 2 + rx) = val; in put_ptreg()
32 static int ldb_asm(uint32_t addr, uint32_t *valp) in ldb_asm()
34 uint32_t val; in ldb_asm()
65 static int stb_asm(uint32_t addr, uint32_t val) in stb_asm()
95 static int ldh_c(struct pt_regs *regs, uint32_t rz, uint32_t addr) in ldh_c()
97 uint32_t byte0, byte1; in ldh_c()
117 static int sth_c(struct pt_regs *regs, uint32_t rz, uint32_t addr) in sth_c()
119 uint32_t byte0, byte1; in sth_c()
142 static int ldw_c(struct pt_regs *regs, uint32_t rz, uint32_t addr) in ldw_c()
144 uint32_t byte0, byte1, byte2, byte3; in ldw_c()
176 static int stw_c(struct pt_regs *regs, uint32_t rz, uint32_t addr) in stw_c()
178 uint32_t byte0, byte1, byte2, byte3; in stw_c()
216 uint32_t opcode = 0; in csky_alignment()
217 uint32_t rx = 0; in csky_alignment()
218 uint32_t rz = 0; in csky_alignment()
219 uint32_t imm = 0; in csky_alignment()
220 uint32_t addr = 0; in csky_alignment()
251 opcode = (uint32_t)tmp; in csky_alignment()