Searched refs:keys (Results 1 – 7 of 7) sorted by relevance
/dalvik/dx/src/com/android/dx/io/instructions/ |
D | SparseSwitchPayloadDecodedInstruction.java | 26 private final int[] keys; field in SparseSwitchPayloadDecodedInstruction 38 int opcode, int[] keys, int[] targets) { in SparseSwitchPayloadDecodedInstruction() argument 41 if (keys.length != targets.length) { in SparseSwitchPayloadDecodedInstruction() 45 this.keys = keys; in SparseSwitchPayloadDecodedInstruction() 55 return keys; in getKeys()
|
D | InstructionCodec.java | 645 int[] keys = new int[size]; in FORMAT_SPARSE_SWITCH_PAYLOAD() local 649 keys[i] = in.readInt(); in FORMAT_SPARSE_SWITCH_PAYLOAD() 657 this, opcodeUnit, keys, targets); in FORMAT_SPARSE_SWITCH_PAYLOAD() 663 int[] keys = payload.getKeys(); in FORMAT_SPARSE_SWITCH_PAYLOAD() local 670 for (int key : keys) { in FORMAT_SPARSE_SWITCH_PAYLOAD()
|
/dalvik/vm/compiler/codegen/x86/ |
D | NcgHelper.cpp | 67 s4 dvmNcgHandleSparseSwitch(const s4* keys, u2 size, s4 testVal) in dvmNcgHandleSparseSwitch() argument 70 const s4* entries = keys + size; in dvmNcgHandleSparseSwitch() 73 s4 k = s4FromSwitchData(&keys[i]); in dvmNcgHandleSparseSwitch() 87 s4 dvmJitHandleSparseSwitch(const s4* keys, u2 size, s4 testVal) in dvmJitHandleSparseSwitch() argument 89 const s4* entries = keys + size; in dvmJitHandleSparseSwitch() 92 s4 k = s4FromSwitchData(&keys[i]); in dvmJitHandleSparseSwitch()
|
D | LowerJump.cpp | 1182 const s4* keys = NULL; in op_sparse_switch() local 1195 const s4* keys = (const s4*) switchData; in op_sparse_switch() local 1196 assert(((u4)keys & 0x3) == 0); in op_sparse_switch() 1208 move_imm_to_mem(OpndSize_32, (int)keys, 0, PhysicalReg_ESP, true); in op_sparse_switch()
|
/dalvik/vm/interp/ |
D | Interp.cpp | 1056 const s4* keys; in dvmInterpHandleSparseSwitch() local 1081 keys = (const s4*) switchData; in dvmInterpHandleSparseSwitch() 1082 assert(((u4)keys & 0x3) == 0); in dvmInterpHandleSparseSwitch() 1087 entries = keys + size; in dvmInterpHandleSparseSwitch() 1099 s4 foundVal = s4FromSwitchData(&keys[mid]); in dvmInterpHandleSparseSwitch()
|
/dalvik/vm/compiler/codegen/mips/ |
D | CodegenDriver.cpp | 2921 const int *keys; local 2942 keys = (const int*) &switchData[2]; 2943 assert(((u4)keys & 0x3) == 0); 2948 entries = keys + size; 2960 int k = keys[i]; 2967 int k = (unsigned int)keys[i] >> 16 | keys[i] << 16;
|
/dalvik/vm/compiler/codegen/arm/ |
D | CodegenDriver.cpp | 2847 const int *keys; in findSparseSwitchIndex() local 2868 keys = (const int*) &switchData[2]; in findSparseSwitchIndex() 2869 assert(((u4)keys & 0x3) == 0); in findSparseSwitchIndex() 2874 entries = keys + size; in findSparseSwitchIndex() 2885 int k = keys[i]; in findSparseSwitchIndex()
|