Searched refs:Rbase (Results 1 – 4 of 4) sorted by relevance
/system/core/libpixelflinger/codeflinger/ |
D | MIPSAssembler.h | 335 void LW(int Rt, int Rbase, int16_t offset); 336 void SW(int Rt, int Rbase, int16_t offset); 337 void LB(int Rt, int Rbase, int16_t offset); 338 void LBU(int Rt, int Rbase, int16_t offset); 339 void SB(int Rt, int Rbase, int16_t offset); 340 void LH(int Rt, int Rbase, int16_t offset); 341 void LHU(int Rt, int Rbase, int16_t offset); 342 void SH(int Rt, int Rbase, int16_t offset);
|
D | MIPSAssembler.cpp | 1699 void MIPSAssembler::LW(int Rt, int Rbase, int16_t offset) in LW() argument 1701 *mPC++ = (lw_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LW() 1704 void MIPSAssembler::SW(int Rt, int Rbase, int16_t offset) in SW() argument 1706 *mPC++ = (sw_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in SW() 1710 void MIPSAssembler::LB(int Rt, int Rbase, int16_t offset) in LB() argument 1712 *mPC++ = (lb_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LB() 1715 void MIPSAssembler::LBU(int Rt, int Rbase, int16_t offset) in LBU() argument 1717 *mPC++ = (lbu_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LBU() 1720 void MIPSAssembler::SB(int Rt, int Rbase, int16_t offset) in SB() argument 1722 *mPC++ = (sb_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in SB() [all …]
|
D | MIPS64Assembler.h | 293 void LD(int Rt, int Rbase, int16_t offset); 294 void SD(int Rt, int Rbase, int16_t offset);
|
D | MIPS64Assembler.cpp | 1425 void MIPS64Assembler::LD(int Rt, int Rbase, int16_t offset) in LD() argument 1427 *mPC++ = (ld_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LD() 1430 void MIPS64Assembler::SD(int Rt, int Rbase, int16_t offset) in SD() argument 1432 *mPC++ = (sd_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in SD()
|