Searched defs:targ (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/analysis/
H A DVerifySubs.c202 int offsetToSwitch, offsetToKeys, offsetToTargets, targ; local
266 for (targ = 1; targ < switchCount; targ++) {
267 s4 key = (s4) switchInsns[offsetToKeys + targ*2] |
268 (s4) (switchInsns[offsetToKeys + targ*2 +1] << 16);
281 for (targ = 0; targ < switchCount; targ++) {
282 offset = (s4) switchInsns[offsetToTargets + targ*
[all...]
H A DCodeVerify.c2430 //dumpRegTypes(meth, insnFlags, targetRegs, 0, "targ", NULL, 0);
5575 int offsetToTargets, targ; local
5587 for (targ = 0; targ < switchCount; targ++) {
5591 offset = switchInsns[offsetToTargets + targ*2] |
5592 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16);
/dalvik/dexdump/
H A DDexDump.c654 s4 targ = (s4) pDecInsn->vA; local
656 insnIdx + targ,
657 (targ < 0) ? '-' : '+',
658 (targ < 0) ? -targ : targ);
666 s4 targ = (s4) pDecInsn->vB; local
668 insnIdx + targ,
669 (targ < 0) ? '-' : '+',
670 (targ <
719 s4 targ = (s4) pDecInsn->vC; local
[all...]

Completed in 126 milliseconds