Home
last modified time | relevance | path

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

/dalvik/libdex/
DInstrUtils.cpp490 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec) in dexDecodeInstruction() argument
496 pDec->opcode = opcode; in dexDecodeInstruction()
497 pDec->indexType = dexGetIndexTypeFromOpcode(opcode); in dexDecodeInstruction()
502 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
505 pDec->vA = INST_A(inst); in dexDecodeInstruction()
506 pDec->vB = INST_B(inst); in dexDecodeInstruction()
509 pDec->vA = INST_A(inst); in dexDecodeInstruction()
510 pDec->vB = (s4) (INST_B(inst) << 28) >> 28; // sign extend 4-bit value in dexDecodeInstruction()
513 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
516 pDec->vA = (s1) INST_AA(inst); // sign-extend 8-bit value in dexDecodeInstruction()
[all …]
DInstrUtils.h199 void dexDecodeInstruction(const u2* insns, DecodedInstruction* pDec);