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()
5850 int32_t last_index = 0; in VisitPackedSwitch() local5851 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()5854 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()5856 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()5858 if (num_entries - last_index == 2) { in VisitPackedSwitch()5861 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
9373 int32_t last_index = 0; in VisitPackedSwitch() local9374 for (; num_entries - last_index > 2; last_index += 2) { in VisitPackedSwitch()9377 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()9379 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2])); in VisitPackedSwitch()9381 if (num_entries - last_index == 2) { in VisitPackedSwitch()9384 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1])); in VisitPackedSwitch()
1903 HInstruction* last_index = graph_->GetIntConstant(payload->element_count - 1, dex_pc); in BuildFillArrayData() local1904 AppendInstruction(new (allocator_) HBoundsCheck(last_index, length, dex_pc)); in BuildFillArrayData()