Lines Matching refs:index

167   int32_t index = 0u;  in AllocateBootImageLiveObjects()  local
170 DCHECK_EQ(index, enum_cast<int32_t>(entry)); in AllocateBootImageLiveObjects()
171 live_objects->Set</*kTransacrionActive=*/ false>(index, value); in AllocateBootImageLiveObjects()
172 ++index; in AllocateBootImageLiveObjects()
183 DCHECK_EQ(index, enum_cast<int32_t>(ImageHeader::kIntrinsicObjectsStart)); in AllocateBootImageLiveObjects()
185 live_objects->Set(index++, integer_cache.Get()); in AllocateBootImageLiveObjects()
187 live_objects->Set(index++, integer_cache->Get(i)); in AllocateBootImageLiveObjects()
190 CHECK_EQ(index, live_objects->GetLength()); in AllocateBootImageLiveObjects()
1249 dex_cache->ClearResolvedMethod(pair.index, target_ptr_size_); in ClearDexCache()
1257 dex_cache->ClearResolvedField(pair.index, target_ptr_size_); in ClearDexCache()
1265 dex_cache->ClearResolvedType(dex::TypeIndex(pair.index)); in ClearDexCache()
1273 dex_cache->ClearString(dex::StringIndex(pair.index)); in ClearDexCache()
1296 uint32_t stored_index = pair.index; in PreloadDexCache()
1328 uint32_t stored_index = pair.index; in PreloadDexCache()
1363 uint32_t stored_index = pair.index; in PreloadDexCache()
1376 uint32_t stored_index = pair.index; in PreloadDexCache()
2325 for (uint32_t index = 0; index != num_strings; ++index) { in CollectStringReferenceInfo() local
2326 ObjPtr<mirror::String> referred_string = strings[index].load().object.Read(); in CollectStringReferenceInfo()
2329 SetDexCacheStringNativeRefTag(base_offset), index); in CollectStringReferenceInfo()
2336 for (uint32_t index = 0; index != num_pre_resolved_strings; ++index) { in CollectStringReferenceInfo() local
2337 ObjPtr<mirror::String> referred_string = preresolved_strings[index].Read(); in CollectStringReferenceInfo()
2340 SetDexCachePreResolvedStringNativeRefTag(base_offset), index); in CollectStringReferenceInfo()
2730 uint32_t index = IntrinsicObjects::DecodePatchIndex(intrinsic_data); in GetIntrinsicReferenceAddress() local
2732 IntrinsicObjects::GetIntegerValueOfObject(boot_image_live_objects_, index); in GetIntrinsicReferenceAddress()
3235 new_pair->index = orig_pair->index; in FixupDexCacheArrayEntry()
3496 ImageWriter::BinSlot::BinSlot(Bin bin, uint32_t index) in BinSlot() argument
3497 : BinSlot(index | (static_cast<uint32_t>(bin) << kBinShift)) { in BinSlot()
3498 DCHECK_EQ(index, GetOffset()); in BinSlot()