Home
last modified time | relevance | path

Searched refs:keys (Results 1 – 8 of 8) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
DMSwitchInsn.java33 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()
DCodeTranslator.java400 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/
Dinterpreter_common.h857 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/
Danalyze-init-failures.py121 all_classes = fail_sources | set(class_fail_class.keys())
Dcpplint.py328 r'[ =()](' + ('|'.join(_ALT_TOKEN_REPLACEMENT.keys())) + r')(?=[ (]|$)')
3769 header_keys = include_state.keys()
/art/runtime/
Druntime_options.def22 // This file defines the list of keys for RuntimeOptions.
36 // Parse-able keys from the command line.
/art/tools/checker/match/
Dtest.py96 self.assertFalse("X" in env.keys())
/art/runtime/interpreter/mterp/
Dmterp.cc63 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()