Home
last modified time | relevance | path

Searched refs:begin_offset (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/accounting/
Dspace_bitmap.cc159 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(begin) - heap_begin_; in ClearRange() local
162 while (begin_offset < end_offset && OffsetBitIndex(begin_offset) != 0) { in ClearRange()
163 Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + begin_offset)); in ClearRange()
164 begin_offset += kAlignment; in ClearRange()
166 while (begin_offset < end_offset && OffsetBitIndex(end_offset) != 0) { in ClearRange()
171 const uintptr_t start_index = OffsetToIndex(begin_offset); in ClearRange()
/art/oatdump/
Doatdump.cc711 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) - in ComputeSize() local
713 auto it = offsets_.upper_bound(begin_offset); in ComputeSize()
716 return end_offset - begin_offset; in ComputeSize()
1559 uint32_t begin_offset = mirror::ObjectArray<mirror::Object>::OffsetOfElement(0).Uint32Value(); in GetBootImageLiveObjectsDataRange() local
1562 return std::make_pair(boot_image_live_objects_address + begin_offset, in GetBootImageLiveObjectsDataRange()
/art/runtime/gc/collector/
Dmark_compact.cc2270 MemberOffset begin_offset(page - reinterpret_cast<uint8_t*>(curr_obj)); in UpdateNonMovingPage() local
2274 visitor, begin_offset, MemberOffset(-1)); in UpdateNonMovingPage()