Searched refs:last_index (Results 1 – 4 of 4) sorted by relevance
153 constexpr size_t last_index = arraysize(patches) - 1u; in TEST() local157 bool expected = (i != last_index ? i : 7u) == (j != last_index ? j : 7u); in TEST()164 bool expected = (i != last_index ? i : 7u) < (j != last_index ? j : 7u); in TEST()
6512 int32_t last_index = 0; in VisitPackedSwitch() local6513 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()6516 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()6518 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()6520 if (num_entries - last_index == 2) { in VisitPackedSwitch()6523 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
9916 int32_t last_index = 0; in VisitPackedSwitch() local9917 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()9920 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()9922 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()9924 if (num_entries - last_index == 2) { in VisitPackedSwitch()9927 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
2489 HInstruction* last_index = graph_->GetIntConstant(payload->element_count - 1, dex_pc); in BuildFillArrayData() local2490 AppendInstruction(new (allocator_) HBoundsCheck(last_index, length, dex_pc)); in BuildFillArrayData()