Searched refs:targ (Results 1 - 5 of 5) sorted by relevance

/art/dexdump/
H A Ddexdump_cfg.cc60 for (uint32_t targ = 0; targ < switch_count; targ++) {
62 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
63 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16);
239 for (uint32_t targ = 0; targ < switch_count; targ++) {
241 static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
242 static_cast<int32_t>(switch_insns[targets_offset + targ *
[all...]
H A Ddexdump.cc994 const s4 targ = (s4) pDecInsn->VRegA(); local
996 insnIdx + targ,
997 (targ < 0) ? '-' : '+',
998 (targ < 0) ? -targ : targ);
1005 const s4 targ = (s4) pDecInsn->VRegB(); local
1007 insnIdx + targ,
1008 (targ < 0) ? '-' : '+',
1009 (targ <
1042 const s4 targ = (s4) pDecInsn->VRegC(); local
[all...]
/art/dexlayout/
H A Ddexlayout.cc918 const int32_t targ = (int32_t) dec_insn->VRegA(); local
920 insn_idx + targ,
921 (targ < 0) ? '-' : '+',
922 (targ < 0) ? -targ : targ);
929 const int32_t targ = (int32_t) dec_insn->VRegB(); local
931 insn_idx + targ,
932 (targ < 0) ? '-' : '+',
933 (targ <
966 const int32_t targ = (int32_t) dec_insn->VRegC(); local
[all...]
/art/runtime/verifier/
H A Dmethod_verifier.cc1557 for (uint32_t targ = 1; targ < switch_count; targ++) {
1559 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) |
1560 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16);
1571 for (uint32_t targ = 0; targ < switch_count; targ++) {
1572 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) |
1573 static_cast<int32_t>(switch_insns[targets_offset + targ *
3553 int offset_to_targets, targ; local
[all...]
/art/test/046-reflect/src/
H A DMain.java371 Target targ;
377 targ = cons.newInstance(args);
378 targ.myMethod(17);

Completed in 112 milliseconds