Home | History | Annotate | Download | only in codeflinger

Lines Matching full:shft

1602 void MIPSAssembler::SLL(int Rd, int Rt, int shft)
1605 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);
1614 void MIPSAssembler::SRL(int Rd, int Rt, int shft)
1617 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);
1626 void MIPSAssembler::SRA(int Rd, int Rt, int shft)
1629 (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);
1638 void MIPSAssembler::ROTR(int Rd, int Rt, int shft) // mips32r2
1642 (1<<RS_SHF) | (Rd<<RD_SHF) | (Rt<<RT_SHF) | (shft<<RE_SHF);