Searched defs:switchInsns (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/analysis/
H A DDexVerify.cpp607 const u2* switchInsns; local
628 switchInsns = insns + offsetToSwitch;
631 if ((((u4) switchInsns) & 0x03) != 0) {
637 switchCount = switchInsns[1];
652 if (switchInsns[0] != expectedSignature) {
654 switchInsns[0], expectedSignature);
671 lastKey = switchInsns[offsetToKeys] |
672 (switchInsns[offsetToKeys+1] << 16);
674 s4 key = (s4) switchInsns[offsetToKeys + targ*2] |
675 (s4) (switchInsns[offsetToKey
[all...]
H A DCodeVerify.cpp5938 const u2* switchInsns = insns + offsetToSwitch; local
5939 int switchCount = switchInsns[1];
5956 offset = switchInsns[offsetToTargets + targ*2] |
5957 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16);

Completed in 42 milliseconds