Home
last modified time | relevance | path

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

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