Home | History | Annotate | Download | only in accounting

Lines Matching refs:heap_begin_

70       heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
102 size_t new_size = OffsetToIndex(new_end - heap_begin_) * sizeof(intptr_t);
126 uintptr_t begin_offset = reinterpret_cast<uintptr_t>(begin) - heap_begin_;
127 uintptr_t end_offset = reinterpret_cast<uintptr_t>(end) - heap_begin_;
130 Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + begin_offset));
135 Clear(reinterpret_cast<mirror::Object*>(heap_begin_ + end_offset));
162 CHECK_EQ(live_bitmap.heap_begin_, mark_bitmap.heap_begin_);
166 CHECK_GE(sweep_begin, live_bitmap.heap_begin_);
175 const size_t start = OffsetToIndex(sweep_begin - live_bitmap.heap_begin_);
176 const size_t end = OffsetToIndex(sweep_end - live_bitmap.heap_begin_ - 1);
198 uintptr_t ptr_base = IndexToOffset(i) + live_bitmap.heap_begin_;