Searched refs:regList (Results 1 – 2 of 2) sorted by relevance
593 u2 regList; in dexDecodeInstruction() local598 regList = FETCH(2); in dexDecodeInstruction()623 case 4: pDec->arg[3] = (regList >> 12) & 0x0f; in dexDecodeInstruction()624 case 3: pDec->arg[2] = (regList >> 8) & 0x0f; in dexDecodeInstruction()625 case 2: pDec->arg[1] = (regList >> 4) & 0x0f; in dexDecodeInstruction()626 case 1: pDec->vC = pDec->arg[0] = regList & 0x0f; break; in dexDecodeInstruction()
735 ArrayList<RegisterSpec> regList in analyzeInstructions()738 if (regList == null) { in analyzeInstructions()739 regList = new ArrayList<RegisterSpec>(); in analyzeInstructions()740 localVariables.put(local, regList); in analyzeInstructions()743 regList.add(assignment); in analyzeInstructions()