Searched refs:last_index (Results 1 – 4 of 4) sorted by relevance
152 constexpr size_t last_index = arraysize(patches) - 1u; in TEST() local156 bool expected = (i != last_index ? i : 7u) == (j != last_index ? j : 7u); in TEST()163 bool expected = (i != last_index ? i : 7u) < (j != last_index ? j : 7u); in TEST()
6120 int32_t last_index = 0; in VisitPackedSwitch() local6121 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()6124 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()6126 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()6128 if (num_entries - last_index == 2) { in VisitPackedSwitch()6131 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
9575 int32_t last_index = 0; in VisitPackedSwitch() local9576 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()9579 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()9581 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()9583 if (num_entries - last_index == 2) { in VisitPackedSwitch()9586 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
2176 HInstruction* last_index = graph_->GetIntConstant(payload->element_count - 1, dex_pc); in BuildFillArrayData() local2177 AppendInstruction(new (allocator_) HBoundsCheck(last_index, length, dex_pc)); in BuildFillArrayData()