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

/art/runtime/gc/accounting/
H A Dspace_bitmap.cc123 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(begin) - heap_begin_; local
126 while (begin_offset < end_offset && OffsetBitIndex(begin_offset) != 0) {
127 Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + begin_offset));
128 begin_offset += kAlignment;
130 while (begin_offset < end_offset && OffsetBitIndex(end_offset) != 0) {
135 const uintptr_t start_index = OffsetToIndex(begin_offset);
/art/oatdump/
H A Doatdump.cc651 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(oat_data) - local
653 auto it = offsets_.upper_bound(begin_offset);
656 return end_offset - begin_offset;

Completed in 64 milliseconds