Searched defs:heap_begin_ (Results 1 - 2 of 2) sorted by path

/art/runtime/gc/accounting/
H A Dcard_table_test.cc43 card_table_.reset(gc::accounting::CardTable::Create(heap_begin_, heap_size_));
50 CardTableTest() : heap_begin_(reinterpret_cast<byte*>(0x2000000)), heap_size_(2 * MB) {
56 return heap_begin_;
62 size_t offset = RoundDown(addr - heap_begin_, kCardSize);
74 byte* const heap_begin_; member in class:art::CardTableTest
H A Dspace_bitmap.h94 // If obj < heap_begin_ then offset underflows to some very large value past the end of the
96 const uintptr_t offset = reinterpret_cast<uintptr_t>(obj) - heap_begin_;
164 return heap_begin_;
187 const uintptr_t offset = addr - heap_begin_;
224 const uintptr_t heap_begin_; member in class:art::gc::accounting::SpaceBitmap

Completed in 477 milliseconds