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

/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp444 uint32_t immediate, uint32_t& rot, uint32_t& imm)
446 rot = 0;
454 rot += 2;
455 if (rot == 32) {
456 rot = 0;
461 rot = (16 - (rot>>1)) & 0xF;
466 if (((imm>>(rot<<1)) | (imm<<(32-(rot<<1)))) != immediate)
476 uint32_t rot, im local
443 buildImmediate( uint32_t immediate, uint32_t& rot, uint32_t& imm) argument
482 uint32_t rot, imm; local
[all...]
H A DGGLAssembler.cpp869 static void normalize(uint32_t& val, uint32_t& rot) argument
871 rot = 0;
877 rot += 2;
878 if (rot == 32) {
879 rot = 0;
887 uint32_t rot; local
915 normalize(mask, rot);
920 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.cpp860 uint32_t immediate, uint32_t& rot, uint32_t& imm)
862 rot = 0;
870 uint32_t rot, imm; local
871 return buildImmediate(immediate, rot, imm) == 0;
859 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);
323 void RORIsyn(int Rd, int Rt, int rot); // synthetic: d = s rotated by immed
H A DMIPSAssembler.cpp206 uint32_t immediate, uint32_t& rot, uint32_t& imm)
209 rot = 0;
1657 void MIPSAssembler::RORIsyn(int Rd, int Rt, int rot) argument
1659 // synthetic: d = t rotated by immed rot
1660 // d = s >> rot | s << (32-rot)
1661 MIPSAssembler::SLL(R_at2, Rt, 32-rot);
1662 MIPSAssembler::SRL(Rd, Rt, rot);
205 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 DMIPS64Assembler.h70 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;
H A DMIPS64Assembler.cpp198 uint32_t immediate, uint32_t& rot, uint32_t& imm)
201 rot = 0;
197 buildImmediate( uint32_t immediate, uint32_t& rot, uint32_t& imm) argument
/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...]
/system/keymaster/
H A Dattestation_record.cpp716 KM_ROOT_OF_TRUST* rot = record->root_of_trust; local
717 if (!rot->verified_boot_key)

Completed in 107 milliseconds