Lines Matching refs:targ
1524 for (uint32_t targ = 1; targ < switch_count; targ++) { in CheckSwitchTargets() local
1526 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) | in CheckSwitchTargets()
1527 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1538 for (uint32_t targ = 0; targ < switch_count; targ++) { in CheckSwitchTargets() local
1539 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in CheckSwitchTargets()
1540 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1548 << "[" << targ << "]"; in CheckSwitchTargets()
3421 int offset_to_targets, targ; in CodeFlowVerifyInstruction() local
3433 for (targ = 0; targ < switch_count; targ++) { in CodeFlowVerifyInstruction()
3438 offset = switch_insns[offset_to_targets + targ * 2] | in CodeFlowVerifyInstruction()
3439 (static_cast<int32_t>(switch_insns[offset_to_targets + targ * 2 + 1]) << 16); in CodeFlowVerifyInstruction()