Searched refs:firstKey (Results 1 – 5 of 5) sorted by relevance
26 private final int firstKey; field in PackedSwitchPayloadDecodedInstruction38 int opcode, int firstKey, int[] targets) { in PackedSwitchPayloadDecodedInstruction() argument41 this.firstKey = firstKey; in PackedSwitchPayloadDecodedInstruction()51 return firstKey; in getFirstKey()
746 int firstKey = in.readInt(); in FORMAT_PACKED_SWITCH_PAYLOAD() local754 this, opcodeUnit, firstKey, targets); in FORMAT_PACKED_SWITCH_PAYLOAD()
1021 s4 firstKey; in dvmInterpHandlePackedSwitch() local1042 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()
992 int firstKey; in processCanSwitch() local1006 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()
2861 int firstKey; in findPackedSwitchIndex() local2881 firstKey = switchData[2]; in findPackedSwitchIndex()2882 firstKey |= switchData[3] << 16; in findPackedSwitchIndex()2891 index = testVal - firstKey; in findPackedSwitchIndex()