Lines Matching refs:targ
1517 for (uint32_t targ = 1; targ < switch_count; targ++) { in CheckSwitchTargets() local
1519 static_cast<int32_t>(switch_insns[keys_offset + targ * 2]) | in CheckSwitchTargets()
1520 static_cast<int32_t>(switch_insns[keys_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1531 for (uint32_t targ = 0; targ < switch_count; targ++) { in CheckSwitchTargets() local
1532 int32_t offset = static_cast<int32_t>(switch_insns[targets_offset + targ * 2]) | in CheckSwitchTargets()
1533 static_cast<int32_t>(switch_insns[targets_offset + targ * 2 + 1] << 16); in CheckSwitchTargets()
1541 << "[" << targ << "]"; in CheckSwitchTargets()
3547 int offset_to_targets, targ; in CodeFlowVerifyInstruction() local
3559 for (targ = 0; targ < switch_count; targ++) { in CodeFlowVerifyInstruction()
3564 offset = switch_insns[offset_to_targets + targ * 2] | in CodeFlowVerifyInstruction()
3565 (static_cast<int32_t>(switch_insns[offset_to_targets + targ * 2 + 1]) << 16); in CodeFlowVerifyInstruction()