Searched refs:shft (Results 1 - 2 of 2) sorted by relevance

/system/core/libpixelflinger/codeflinger/
H A DMIPSAssembler.h313 void SLL(int Rd, int Rt, int shft);
315 void SRL(int Rd, int Rt, int shft);
317 void SRA(int Rd, int Rt, int shft);
319 void ROTR(int Rd, int Rt, int shft); // mips32r2
H A DMIPSAssembler.cpp1602 void MIPSAssembler::SLL(int Rd, int Rt, int shft) argument
1605 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);
1614 void MIPSAssembler::SRL(int Rd, int Rt, int shft) argument
1617 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);
1626 void MIPSAssembler::SRA(int Rd, int Rt, int shft) argument
1629 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);
1638 void MIPSAssembler::ROTR(int Rd, int Rt, int shft) // mips32r2 argument
1642 (1<<RS_SHF) | (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);

Completed in 166 milliseconds