Home
last modified time | relevance | path

Searched refs:Rbase (Results 1 – 4 of 4) sorted by relevance

/system/core/libpixelflinger/codeflinger/
DMIPSAssembler.h335 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);
DMIPSAssembler.cpp1693 void MIPSAssembler::LW(int Rt, int Rbase, int16_t offset) in LW() argument
1695 *mPC++ = (lw_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LW()
1698 void MIPSAssembler::SW(int Rt, int Rbase, int16_t offset) in SW() argument
1700 *mPC++ = (sw_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in SW()
1704 void MIPSAssembler::LB(int Rt, int Rbase, int16_t offset) in LB() argument
1706 *mPC++ = (lb_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LB()
1709 void MIPSAssembler::LBU(int Rt, int Rbase, int16_t offset) in LBU() argument
1711 *mPC++ = (lbu_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LBU()
1714 void MIPSAssembler::SB(int Rt, int Rbase, int16_t offset) in SB() argument
1716 *mPC++ = (sb_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in SB()
[all …]
DMIPS64Assembler.h293 void LD(int Rt, int Rbase, int16_t offset);
294 void SD(int Rt, int Rbase, int16_t offset);
DMIPS64Assembler.cpp1422 void MIPS64Assembler::LD(int Rt, int Rbase, int16_t offset) in LD() argument
1424 *mPC++ = (ld_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in LD()
1427 void MIPS64Assembler::SD(int Rt, int Rbase, int16_t offset) in SD() argument
1429 *mPC++ = (sd_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16); in SD()