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

/system/core/libpixelflinger/codeflinger/
H A Ddisassem.c83 * j - xtb rotate literal (bits 10-11)
353 int rotate= ((insn >> 7) & 0x1e); local
356 (insn & 0xff) << (32 - rotate) |
357 (insn & 0xff) >> rotate);
414 /* j - xtb rotate literal (bits 10-11) */
H A DARMAssembler.cpp437 void ARMAssembler::UXTB16(int cc, int Rd, int Rm, int rotate) argument
439 *mPC++ = (cc<<28) | 0x6CF0070 | (Rd<<12) | ((rotate >> 3) << 10) | Rm;
H A DARMAssemblerProxy.cpp289 void ARMAssemblerProxy::UXTB16(int cc, int Rd, int Rm, int rotate) { argument
290 mTarget->UXTB16(cc, Rd, Rm, rotate);
H A DMIPSAssembler.cpp1199 void ArmToMipsAssembler::UXTB16(int cc, int Rd, int Rm, int rotate) argument
1206 mMips->ROTR(Rm, Rm, rotate * 8);

Completed in 122 milliseconds