Home
last modified time | relevance | path

Searched refs:targets_offset (Results 1 – 2 of 2) sorted by relevance

/art/dexdump/
Ddexdump_cfg.cc54 int32_t targets_offset; in DumpMethodCFG() local
57 targets_offset = 4; in DumpMethodCFG()
60 targets_offset = 2 + 2 * switch_count; in DumpMethodCFG()
64 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in DumpMethodCFG()
65 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in DumpMethodCFG()
228 int32_t targets_offset; in DumpMethodCFG() local
231 targets_offset = 4; in DumpMethodCFG()
234 targets_offset = 2 + 2 * switch_count; in DumpMethodCFG()
240 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in DumpMethodCFG()
241 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in DumpMethodCFG()
/art/runtime/verifier/
Dmethod_verifier.cc1516 int32_t targets_offset; in CheckSwitchTargets() local
1520 targets_offset = 4; in CheckSwitchTargets()
1524 targets_offset = 2 + 2 * switch_count; in CheckSwitchTargets()
1527 uint32_t table_size = targets_offset + switch_count * 2; in CheckSwitchTargets()
1573 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in CheckSwitchTargets()
1574 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()