Home
last modified time | relevance | path

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

/art/runtime/
Ddex_to_dex_decompiler.cc74 DCHECK_LT(quicken_index_, quicken_info_.NumIndices()); in NextIndex()
75 const uint16_t ret = quicken_info_.GetData(quicken_index_); in NextIndex()
76 quicken_index_++; in NextIndex()
84 size_t quicken_index_ = 0u; member in art::optimizer::DexDecompiler
182 if (quicken_index_ != quicken_info_.NumIndices()) { in Decompile()
183 if (quicken_index_ == 0) { in Decompile()
188 << " Actual: " << std::hex << quicken_index_ in Decompile()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc124 uint32_t quicken_index_ = 0u; member
184 if (kIsDebugBuild && quicken_index_ >= existing_quicken_info_.NumIndices()) { in NextIndex()
190 const uint16_t ret = existing_quicken_info_.GetData(quicken_index_); in NextIndex()
191 quicken_index_++; in NextIndex()
343 DCHECK_EQ(quicken_index_, existing_quicken_info_.NumIndices()); in Compile()