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

  /art/runtime/gc/accounting/
space_bitmap-inl.h 30 DCHECK_GE(addr, heap_begin_);
31 const uintptr_t offset = addr - heap_begin_;
51 DCHECK_GE(addr, heap_begin_);
52 const uintptr_t offset = addr - heap_begin_;
60 const size_t bit_index_start = (visit_begin - heap_begin_) / kAlignment;
61 const size_t bit_index_end = (visit_end - heap_begin_ - 1) / kAlignment;
78 uintptr_t ptr_base = IndexToOffset(word_start) + heap_begin_;
91 uintptr_t ptr_base = IndexToOffset(i) + heap_begin_;
111 uintptr_t ptr_base = IndexToOffset(word_end) + heap_begin_;
122 DCHECK_GE(addr, heap_begin_);
    [all...]
space_bitmap.cc 78 size_t new_size = OffsetToIndex(new_end - heap_begin_) * kWordSize;
107 uintptr_t end = OffsetToIndex(HeapLimit() - heap_begin_ - 1);
112 uintptr_t ptr_base = IndexToOffset(i) + heap_begin_;
134 CHECK_EQ(live_bitmap.heap_begin_, mark_bitmap.heap_begin_);
138 CHECK_GE(sweep_begin, live_bitmap.heap_begin_);
148 size_t start = OffsetToIndex(sweep_begin - live_bitmap.heap_begin_);
149 size_t end = OffsetToIndex(sweep_end - live_bitmap.heap_begin_ - 1);
156 uintptr_t ptr_base = IndexToOffset(i) + live_bitmap.heap_begin_;
249 reinterpret_cast<byte*>(heap_begin_),
    [all...]
space_bitmap.h 98 // If obj < heap_begin_ then offset underflows to some very large value past the end of the
100 const uintptr_t offset = reinterpret_cast<uintptr_t>(obj) - heap_begin_;
159 return heap_begin_;
177 const uintptr_t offset = addr - heap_begin_;
188 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
204 const uintptr_t heap_begin_; member in class:art::gc::accounting::SpaceBitmap

Completed in 32 milliseconds