Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Dspace_bitmap.cc125 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(begin) - heap_begin_; in ClearRange() local
128 while (begin_offset < end_offset && OffsetBitIndex(begin_offset) != 0) { in ClearRange()
129 Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + begin_offset)); in ClearRange()
130 begin_offset += kAlignment; in ClearRange()
132 while (begin_offset < end_offset && OffsetBitIndex(end_offset) != 0) { in ClearRange()
137 const uintptr_t start_index = OffsetToIndex(begin_offset); in ClearRange()
/art/oatdump/
Doatdump.cc694 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) - in ComputeSize() local
696 auto it = offsets_.upper_bound(begin_offset); in ComputeSize()
699 return end_offset - begin_offset; in ComputeSize()
1666 uint32_t begin_offset = mirror::ObjectArray<mirror::Object>::OffsetOfElement(0).Uint32Value(); in GetBootImageLiveObjectsDataRange() local
1669 return std::make_pair(boot_image_live_objects_address + begin_offset, in GetBootImageLiveObjectsDataRange()