Home
last modified time | relevance | path

Searched refs:firstKey (Results 1 – 5 of 5) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
DPackedSwitchPayloadDecodedInstruction.java26 private final int firstKey; field in PackedSwitchPayloadDecodedInstruction
38 int opcode, int firstKey, int[] targets) { in PackedSwitchPayloadDecodedInstruction() argument
41 this.firstKey = firstKey; in PackedSwitchPayloadDecodedInstruction()
51 return firstKey; in getFirstKey()
DInstructionCodec.java746 int firstKey = in.readInt(); in FORMAT_PACKED_SWITCH_PAYLOAD() local
754 this, opcodeUnit, firstKey, targets); in FORMAT_PACKED_SWITCH_PAYLOAD()
/dalvik/vm/interp/
DInterp.cpp1021 s4 firstKey; in dvmInterpHandlePackedSwitch() local
1042 firstKey = *switchData++; in dvmInterpHandlePackedSwitch()
1043 firstKey |= (*switchData++) << 16; in dvmInterpHandlePackedSwitch()
1045 if (testVal < firstKey || testVal >= firstKey + size) { in dvmInterpHandlePackedSwitch()
1047 testVal, firstKey, firstKey+size-1); in dvmInterpHandlePackedSwitch()
1057 assert(testVal - firstKey >= 0 && testVal - firstKey < size); in dvmInterpHandlePackedSwitch()
1059 testVal, testVal - firstKey, in dvmInterpHandlePackedSwitch()
1060 s4FromSwitchData(&entries[testVal - firstKey])); in dvmInterpHandlePackedSwitch()
1061 return s4FromSwitchData(&entries[testVal - firstKey]); in dvmInterpHandlePackedSwitch()
/dalvik/vm/compiler/
DFrontend.cpp992 int firstKey; in processCanSwitch() local
1006 firstKey = switchData[2] | (switchData[3] << 16); in processCanSwitch()
1023 firstKey = 0; // To make the compiler happy in processCanSwitch()
1047 firstKey + i : keyTable[i]; in processCanSwitch()
/dalvik/vm/compiler/codegen/arm/
DCodegenDriver.cpp2861 int firstKey; in findPackedSwitchIndex() local
2881 firstKey = switchData[2]; in findPackedSwitchIndex()
2882 firstKey |= switchData[3] << 16; in findPackedSwitchIndex()
2891 index = testVal - firstKey; in findPackedSwitchIndex()