Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dmethod_verifier.cc2341 uint32_t prev_idx = work_insn_idx_ - 1; in CodeFlowVerifyInstruction() local
2342 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) { in CodeFlowVerifyInstruction()
2343 prev_idx--; in CodeFlowVerifyInstruction()
2345 const Instruction& prev_inst = code_item_accessor_.InstructionAt(prev_idx); in CodeFlowVerifyInstruction()
2365 if (prev_idx == 0 || GetInstructionFlags(prev_idx).IsBranchTarget()) { in CodeFlowVerifyInstruction()
2368 prev_idx--; in CodeFlowVerifyInstruction()
2369 while (0 != prev_idx && !GetInstructionFlags(prev_idx).IsOpcode()) { in CodeFlowVerifyInstruction()
2370 prev_idx--; in CodeFlowVerifyInstruction()
2372 const Instruction& prev2_inst = code_item_accessor_.InstructionAt(prev_idx); in CodeFlowVerifyInstruction()
/art/libdexfile/dex/
Ddex_file_verifier.cc2586 dex::TypeIndex prev_idx = prev_it.GetTypeIdx(); in CheckInterProtoIdItem() local
2588 DCHECK_NE(prev_idx, dex::TypeIndex(DexFile::kDexNoIndex16)); in CheckInterProtoIdItem()
2591 if (prev_idx < curr_idx) { in CheckInterProtoIdItem()
2593 } else if (UNLIKELY(prev_idx > curr_idx)) { in CheckInterProtoIdItem()