Home
last modified time | relevance | path

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

/system/core/libpixelflinger/codeflinger/
DMIPSAssembler.h314 void SLL(int Rd, int Rt, int shft);
316 void SRL(int Rd, int Rt, int shft);
318 void SRA(int Rd, int Rt, int shft);
320 void ROTR(int Rd, int Rt, int shft); // mips32r2
DMIPSAssembler.cpp1602 void MIPSAssembler::SLL(int Rd, int Rt, int shft) in SLL() argument
1605 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF); in SLL()
1614 void MIPSAssembler::SRL(int Rd, int Rt, int shft) in SRL() argument
1617 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF); in SRL()
1626 void MIPSAssembler::SRA(int Rd, int Rt, int shft) in SRA() argument
1629 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF); in SRA()
1638 void MIPSAssembler::ROTR(int Rd, int Rt, int shft) // mips32r2 in ROTR() argument
1642 (1<<RS_SHF) | (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF); in ROTR()