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

/dalvik/dexdump/
H A DDexDump.cpp907 s4 targ = (s4) pDecInsn->vA; local
909 insnIdx + targ,
910 (targ < 0) ? '-' : '+',
911 (targ < 0) ? -targ : targ);
919 s4 targ = (s4) pDecInsn->vB; local
921 insnIdx + targ,
922 (targ < 0) ? '-' : '+',
923 (targ <
955 s4 targ = (s4) pDecInsn->vC; local
[all...]
/dalvik/vm/analysis/
H A DCodeVerify.cpp2604 //dumpRegTypes(vdata, targetRegs, 0, "targ", NULL, 0);
5940 int offsetToTargets, targ; local
5952 for (targ = 0; targ < switchCount; targ++) {
5956 offset = switchInsns[offsetToTargets + targ*2] |
5957 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16);
H A DDexVerify.cpp612 u4 targ; local
673 for (targ = 1; targ < switchCount; targ++) {
674 s4 key = (s4) switchInsns[offsetToKeys + targ*2] |
675 (s4) (switchInsns[offsetToKeys + targ*2 +1] << 16);
687 for (targ = 0; targ < switchCount; targ++) {
688 offset = (s4) switchInsns[offsetToTargets + targ*
[all...]

Completed in 65 milliseconds