Home
last modified time | relevance | path

Searched refs:targ (Results 1 – 3 of 3) sorted by relevance

/art/dexdump/
Ddexdump_cfg.cc64 for (uint32_t targ = 0; targ < switch_count; targ++) { in dumpMethodCFGImpl() local
66 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in dumpMethodCFGImpl()
67 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in dumpMethodCFGImpl()
240 for (uint32_t targ = 0; targ < switch_count; targ++) { in dumpMethodCFGImpl() local
242 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in dumpMethodCFGImpl()
243 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in dumpMethodCFGImpl()
/art/dexlayout/
Ddexlayout.cc891 const int32_t targ = (int32_t) dec_insn->VRegA(); in DumpInstruction() local
893 insn_idx + targ, in DumpInstruction()
894 (targ < 0) ? '-' : '+', in DumpInstruction()
895 (targ < 0) ? -targ : targ); in DumpInstruction()
902 const int32_t targ = (int32_t) dec_insn->VRegB(); in DumpInstruction() local
904 insn_idx + targ, in DumpInstruction()
905 (targ < 0) ? '-' : '+', in DumpInstruction()
906 (targ < 0) ? -targ : targ); in DumpInstruction()
939 const int32_t targ = (int32_t) dec_insn->VRegC(); in DumpInstruction() local
942 insn_idx + targ, in DumpInstruction()
[all …]
/art/test/046-reflect/src/
DMain.java371 Target targ; in run() local
377 targ = cons.newInstance(args); in run()
378 targ.myMethod(17); in run()