Searched refs:rot (Results 1 - 11 of 11) sorted by relevance

/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp458 uint32_t immediate, uint32_t& rot, uint32_t& imm)
460 rot = 0;
468 rot += 2;
469 if (rot == 32) {
470 rot = 0;
475 rot = (16 - (rot>>1)) & 0xF;
480 if (((imm>>(rot<<1)) | (imm<<(32-(rot<<1)))) != immediate)
490 uint32_t rot, im local
457 buildImmediate( uint32_t immediate, uint32_t& rot, uint32_t& imm) argument
496 uint32_t rot, imm; local
[all...]
H A DGGLAssembler.cpp868 static void normalize(uint32_t& val, uint32_t& rot) argument
870 rot = 0;
876 rot += 2;
877 if (rot == 32) {
878 rot = 0;
886 uint32_t rot; local
913 normalize(mask, rot);
918 int shift = rot + bitpos;
H A DARMAssemblerProxy.cpp81 int ARMAssemblerProxy::buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm) argument
83 return mTarget->buildImmediate(i, rot, imm);
H A DARMAssembler.h67 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm);
H A DARMAssemblerProxy.h56 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm);
H A DArm64Assembler.cpp861 uint32_t immediate, uint32_t& rot, uint32_t& imm)
863 rot = 0;
871 uint32_t rot, imm; local
872 return buildImmediate(immediate, rot, imm) == 0;
860 buildImmediate( uint32_t immediate, uint32_t& rot, uint32_t& imm) argument
H A DMIPSAssembler.h65 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm);
322 void RORIsyn(int Rd, int Rt, int rot); // synthetic: d = s rotated by immed
H A DMIPSAssembler.cpp211 uint32_t immediate, uint32_t& rot, uint32_t& imm)
214 rot = 0;
1663 void MIPSAssembler::RORIsyn(int Rd, int Rt, int rot) argument
1665 // synthetic: d = t rotated by immed rot
1666 // d = s >> rot | s << (32-rot)
1667 MIPSAssembler::SLL(R_at2, Rt, 32-rot);
1668 MIPSAssembler::SRL(Rd, Rt, rot);
210 buildImmediate( uint32_t immediate, uint32_t& rot, uint32_t& imm) argument
H A DArm64Assembler.h80 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm);
H A DARMAssemblerInterface.h78 virtual int buildImmediate(uint32_t i, uint32_t& rot, uint32_t& imm) = 0;
/system/extras/ksmutils/
H A Dlookup3.c69 #define rot(x,k) (((x)<<(k)) | ((x)>>(32-(k)))) macro
92 Some k values for my "a-=c; a^=rot(c,k); c+=b;" arrangement that
117 a -= c; a ^= rot(c, 4); c += b; \
118 b -= a; b ^= rot(a, 6); a += c; \
119 c -= b; c ^= rot(b, 8); b += a; \
120 a -= c; a ^= rot(c,16); c += b; \
121 b -= a; b ^= rot(a,19); a += c; \
122 c -= b; c ^= rot(b, 4); b += a; \
152 c ^= b; c -= rot(b,14); \
153 a ^= c; a -= rot(
[all...]

Completed in 245 milliseconds