Lines Matching refs:arg
621 pDec->arg[4] = INST_A(inst); in dexDecodeInstruction()
624 case 4: pDec->arg[3] = (regList >> 12) & 0x0f; FALLTHROUGH_INTENDED; in dexDecodeInstruction()
625 case 3: pDec->arg[2] = (regList >> 8) & 0x0f; FALLTHROUGH_INTENDED; in dexDecodeInstruction()
626 case 2: pDec->arg[1] = (regList >> 4) & 0x0f; FALLTHROUGH_INTENDED; in dexDecodeInstruction()
627 case 1: pDec->vC = pDec->arg[0] = regList & 0x0f; break; in dexDecodeInstruction()
653 pDec->arg[0] = (fedc >> 4) & 0xf; // vD in dexDecodeInstruction()
654 pDec->arg[1] = (fedc >> 8) & 0xf; // vE in dexDecodeInstruction()
655 pDec->arg[2] = (fedc >> 12); // vF in dexDecodeInstruction()
656 pDec->arg[3] = INST_A(inst); // vG in dexDecodeInstruction()
657 pDec->arg[4] = FETCH(3); // vH proto@HHHH in dexDecodeInstruction()
666 pDec->arg[4] = FETCH(3); // vH proto@HHHH in dexDecodeInstruction()