Home
last modified time | relevance | path

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

/art/runtime/
Ddex_file_verifier.cc1797 uint16_t prev_idx = prev_it.GetTypeIdx(); in CheckInterProtoIdItem() local
1799 DCHECK_NE(prev_idx, DexFile::kDexNoIndex16); in CheckInterProtoIdItem()
1802 if (prev_idx < curr_idx) { in CheckInterProtoIdItem()
1804 } else if (UNLIKELY(prev_idx > curr_idx)) { in CheckInterProtoIdItem()
/art/runtime/verifier/
Dmethod_verifier.cc2280 uint32_t prev_idx = work_insn_idx_ - 1; in CodeFlowVerifyInstruction() local
2281 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) { in CodeFlowVerifyInstruction()
2282 prev_idx--; in CodeFlowVerifyInstruction()
2284 const Instruction* prev_inst = Instruction::At(code_item_->insns_ + prev_idx); in CodeFlowVerifyInstruction()