Searched defs:firstKey (Results 1 - 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
H A DPackedSwitchPayloadDecodedInstruction.java26 private final int firstKey; field in class:PackedSwitchPayloadDecodedInstruction
38 int opcode, int firstKey, int[] targets) {
41 this.firstKey = firstKey;
51 return firstKey;
37 PackedSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int firstKey, int[] targets) argument
/dalvik/vm/compiler/codegen/x86/
H A DNcgHelper.cpp29 s4 dvmNcgHandlePackedSwitch(const s4* entries, s4 firstKey, u2 size, s4 testVal) argument
33 if (testVal < firstKey || testVal >= firstKey + size) {
35 testVal, firstKey, firstKey+size-1);
39 assert(testVal - firstKey >= 0 && testVal - firstKey < size);
41 testVal, testVal - firstKey,
42 s4FromSwitchData(&entries[testVal - firstKey]));
43 return s4FromSwitchData(&entries[testVal - firstKey]);
47 dvmJitHandlePackedSwitch(const s4* entries, s4 firstKey, u2 size, s4 testVal) argument
[all...]
H A DLowerJump.cpp814 entryPtr_bytecode = (s4*)(sizePtr + 1 /*size*/ + 2 /*firstKey*/);
1125 s4 firstKey = 0; local
1137 s4 firstKey = *switchData++; local
1138 firstKey |= (*switchData++) << 16;
1147 move_imm_to_mem(OpndSize_32, firstKey, 4, PhysicalReg_ESP, true);
/dalvik/vm/compiler/
H A DFrontend.cpp991 int firstKey; local
1005 firstKey = switchData[2] | (switchData[3] << 16);
1022 firstKey = 0; // To make the compiler happy
1048 firstKey + i : keyTable[i];
/dalvik/vm/interp/
H A DInterp.cpp1003 s4 firstKey; local
1024 firstKey = *switchData++;
1025 firstKey |= (*switchData++) << 16;
1027 if (testVal < firstKey || testVal >= firstKey + size) {
1029 testVal, firstKey, firstKey+size-1);
1039 assert(testVal - firstKey >= 0 && testVal - firstKey < size);
1041 testVal, testVal - firstKey,
[all...]
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.cpp2795 int firstKey; local
2815 firstKey = switchData[2];
2816 firstKey |= switchData[3] << 16;
2825 index = testVal - firstKey;
/dalvik/vm/compiler/codegen/mips/
H A DCodegenDriver.cpp2868 int firstKey; local
2886 firstKey = switchData[2];
2887 firstKey |= switchData[3] << 16;
2896 index = testVal - firstKey;

Completed in 3133 milliseconds