HomeSort by relevance Sort by last modified time
    Searched refs:heap_begin_ (Results 1 - 4 of 4) sorted by null

  /art/runtime/gc/accounting/
space_bitmap-inl.h 36 DCHECK_GE(addr, heap_begin_);
37 const uintptr_t offset = addr - heap_begin_;
60 DCHECK_GE(addr, heap_begin_);
61 const uintptr_t offset = addr - heap_begin_;
80 DCHECK_LE(heap_begin_, visit_begin);
83 const uintptr_t offset_start = visit_begin - heap_begin_;
84 const uintptr_t offset_end = visit_end - heap_begin_;
112 const uintptr_t ptr_base = IndexToOffset(index_start) + heap_begin_;
125 const uintptr_t ptr_base = IndexToOffset(i) + heap_begin_;
152 const uintptr_t ptr_base = IndexToOffset(index_end) + heap_begin_;
    [all...]
space_bitmap.cc 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_);
    [all...]
card_table_test.cc 45 card_table_.reset(CardTable::Create(heap_begin_, heap_size_));
52 CardTableTest() : heap_begin_(reinterpret_cast<uint8_t*>(0x2000000)), heap_size_(2 * MB) {
58 return heap_begin_;
65 size_t offset = RoundDown(addr - heap_begin_, CardTable::kCardSize);
77 uint8_t* const heap_begin_; member in class:art::gc::accounting::CardTableTest
space_bitmap.h 120 // If obj < heap_begin_ then offset underflows to some very large value past the end of the
122 const uintptr_t offset = reinterpret_cast<uintptr_t>(obj) - heap_begin_;
191 heap_limit_ = heap_begin_ + bytes;
197 return heap_begin_;
248 const uintptr_t heap_begin_; member in class:art::gc::accounting::SpaceBitmap

Completed in 2639 milliseconds