Searched refs:keys (Results 1 – 8 of 8) sorted by relevance
/art/tools/dexfuzz/src/dexfuzz/program/ |
D | MSwitchInsn.java | 33 public int[] keys; field in MSwitchInsn 46 newInsn.keys = new int[keys.length]; in clone() 47 System.arraycopy(keys, 0, newInsn.keys, 0, keys.length); in clone()
|
D | CodeTranslator.java | 400 int[] keys = new int[targetsSize]; in readSwitchInstruction() local 407 keys[0] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes, rawPtr); in readSwitchInstruction() 411 keys[i] = keys[i - 1] + 1; in readSwitchInstruction() 417 keys[i] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes, in readSwitchInstruction() 431 switchInsn.keys = keys; in readSwitchInstruction() 457 int[] keys = switchInsn.keys; in updateSwitchInstruction() local 479 RawInsnHelper.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[0]); in updateSwitchInstruction() 484 RawInsnHelper.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[i]); in updateSwitchInstruction()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 857 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); in DoPackedSwitch() local 858 DCHECK_ALIGNED(keys, 4); in DoPackedSwitch() 859 int32_t first_key = keys[0]; in DoPackedSwitch() 885 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); in DoSparseSwitch() local 886 DCHECK_ALIGNED(keys, 4); in DoSparseSwitch() 887 const int32_t* entries = keys + size; in DoSparseSwitch() 893 int32_t foundVal = keys[mid]; in DoSparseSwitch()
|
/art/tools/ |
D | analyze-init-failures.py | 121 all_classes = fail_sources | set(class_fail_class.keys())
|
D | cpplint.py | 328 r'[ =()](' + ('|'.join(_ALT_TOKEN_REPLACEMENT.keys())) + r')(?=[ (]|$)') 3769 header_keys = include_state.keys()
|
/art/runtime/ |
D | runtime_options.def | 22 // This file defines the list of keys for RuntimeOptions. 36 // Parse-able keys from the command line.
|
/art/tools/checker/match/ |
D | test.py | 96 self.assertFalse("X" in env.keys())
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 63 const int32_t* keys; in MterpDoSparseSwitch() local 84 keys = reinterpret_cast<const int32_t*>(switchData); in MterpDoSparseSwitch() 89 entries = keys + size; in MterpDoSparseSwitch() 100 int32_t foundVal = keys[mid]; in MterpDoSparseSwitch()
|