Searched refs:targ (Results 1 – 5 of 5) sorted by relevance
/art/dexdump/ |
D | dexdump_cfg.cc | 62 for (uint32_t targ = 0; targ < switch_count; targ++) { in DumpMethodCFG() local 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() 238 for (uint32_t targ = 0; targ < switch_count; targ++) { in DumpMethodCFG() local 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()
|
D | dexdump.cc | 1088 const s4 targ = (s4) pDecInsn->VRegA(); in dumpInstruction() local 1090 insnIdx + targ, in dumpInstruction() 1091 (targ < 0) ? '-' : '+', in dumpInstruction() 1092 (targ < 0) ? -targ : targ); in dumpInstruction() 1099 const s4 targ = (s4) pDecInsn->VRegB(); in dumpInstruction() local 1101 insnIdx + targ, in dumpInstruction() 1102 (targ < 0) ? '-' : '+', in dumpInstruction() 1103 (targ < 0) ? -targ : targ); in dumpInstruction() 1136 const s4 targ = (s4) pDecInsn->VRegC(); in dumpInstruction() local 1139 insnIdx + targ, in dumpInstruction() [all …]
|
/art/dexlayout/ |
D | dexlayout.cc | 947 const int32_t targ = (int32_t) dec_insn->VRegA(); in DumpInstruction() local 949 insn_idx + targ, in DumpInstruction() 950 (targ < 0) ? '-' : '+', in DumpInstruction() 951 (targ < 0) ? -targ : targ); in DumpInstruction() 958 const int32_t targ = (int32_t) dec_insn->VRegB(); in DumpInstruction() local 960 insn_idx + targ, in DumpInstruction() 961 (targ < 0) ? '-' : '+', in DumpInstruction() 962 (targ < 0) ? -targ : targ); in DumpInstruction() 995 const int32_t targ = (int32_t) dec_insn->VRegC(); in DumpInstruction() local 998 insn_idx + targ, in DumpInstruction() [all …]
|
/art/runtime/verifier/ |
D | method_verifier.cc | 1524 for (uint32_t targ = 1; targ < switch_count; targ++) { in CheckSwitchTargets() local 1526 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) | in CheckSwitchTargets() 1527 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16); in CheckSwitchTargets() 1538 for (uint32_t targ = 0; targ < switch_count; targ++) { in CheckSwitchTargets() local 1539 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in CheckSwitchTargets() 1540 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in CheckSwitchTargets() 1548 << "[" << targ << "]"; in CheckSwitchTargets() 3428 int offset_to_targets, targ; in CodeFlowVerifyInstruction() local 3440 for (targ = 0; targ < switch_count; targ++) { in CodeFlowVerifyInstruction() 3445 offset = switch_insns[offset_to_targets + targ * 2] | in CodeFlowVerifyInstruction() [all …]
|
/art/test/046-reflect/src/ |
D | Main.java | 371 Target targ; in run() local 377 targ = cons.newInstance(args); in run() 378 targ.myMethod(17); in run()
|