Home
last modified time | relevance | path

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

/dalvik/vm/analysis/
DVerifySubs.c200 int offsetToSwitch, offsetToKeys, offsetToTargets, targ; in dvmCheckSwitchTargets() local
231 offsetToTargets = 4; in dvmCheckSwitchTargets()
237 offsetToTargets = 2 + 2*switchCount; in dvmCheckSwitchTargets()
240 tableSize = offsetToTargets + switchCount*2; in dvmCheckSwitchTargets()
280 offset = (s4) switchInsns[offsetToTargets + targ*2] | in dvmCheckSwitchTargets()
281 (s4) (switchInsns[offsetToTargets + targ*2 +1] << 16); in dvmCheckSwitchTargets()
DRegisterMap.c1528 int offsetToTargets, targ;
1532 offsetToTargets = 4;
1536 offsetToTargets = 2 + 2*switchCount;
1544 offset = switchInsns[offsetToTargets + targ*2] |
1545 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16);
DCodeVerify.c5223 int offsetToTargets, targ; in verifyInstruction() local
5227 offsetToTargets = 4; in verifyInstruction()
5231 offsetToTargets = 2 + 2*switchCount; in verifyInstruction()
5239 offset = switchInsns[offsetToTargets + targ*2] | in verifyInstruction()
5240 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16); in verifyInstruction()