Searched defs:Rbase (Results 1 - 1 of 1) sorted by relevance

/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.cpp1699 void MIPSAssembler::LW(int Rt, int Rbase, int16_t offset) argument
1701 *mPC++ = (lw_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16);
1704 void MIPSAssembler::SW(int Rt, int Rbase, int16_t offset) argument
1706 *mPC++ = (sw_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16);
1710 void MIPSAssembler::LB(int Rt, int Rbase, int16_t offset) argument
1712 *mPC++ = (lb_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16);
1715 void MIPSAssembler::LBU(int Rt, int Rbase, int16_t offset) argument
1717 *mPC++ = (lbu_op<<OP_SHF) | (Rbase<<RS_SHF) | (Rt<<RT_SHF) | (offset & MSK_16);
1720 void MIPSAssembler::SB(int Rt, int Rbase, int16_t offset) argument
1722 *mPC++ = (sb_op<<OP_SHF) | (Rbase<<RS_SH
1726 LH(int Rt, int Rbase, int16_t offset) argument
1731 LHU(int Rt, int Rbase, int16_t offset) argument
1736 SH(int Rt, int Rbase, int16_t offset) argument
[all...]

Completed in 33 milliseconds