Home
last modified time | relevance | path

Searched refs:prev_idx (Results 1 – 2 of 2) sorted by relevance

/art/runtime/verifier/
Dmethod_verifier.cc2270 uint32_t prev_idx = work_insn_idx_ - 1; in CodeFlowVerifyInstruction() local
2271 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) { in CodeFlowVerifyInstruction()
2272 prev_idx--; in CodeFlowVerifyInstruction()
2274 const Instruction& prev_inst = code_item_accessor_.InstructionAt(prev_idx); in CodeFlowVerifyInstruction()
2294 if (prev_idx == 0 || GetInstructionFlags(prev_idx).IsBranchTarget()) { in CodeFlowVerifyInstruction()
2297 prev_idx--; in CodeFlowVerifyInstruction()
2298 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) { in CodeFlowVerifyInstruction()
2299 prev_idx--; in CodeFlowVerifyInstruction()
2301 const Instruction& prev2_inst = code_item_accessor_.InstructionAt(prev_idx); in CodeFlowVerifyInstruction()
/art/libdexfile/dex/
Ddex_file_verifier.cc2751 dex::TypeIndex prev_idx = prev_it.GetTypeIdx(); in CheckInterProtoIdItem() local
2753 DCHECK_NE(prev_idx, dex::TypeIndex(DexFile::kDexNoIndex16)); in CheckInterProtoIdItem()
2756 if (prev_idx < curr_idx) { in CheckInterProtoIdItem()
2758 } else if (UNLIKELY(prev_idx > curr_idx)) { in CheckInterProtoIdItem()