Searched refs:heap_begin (Results 1 – 7 of 7) sorted by relevance
/art/runtime/gc/accounting/ |
D | space_bitmap_test.cc | 33 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); in TEST_F() local 36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 60 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); in TEST_F() local 64 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 70 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment); in TEST_F() 81 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment); in TEST_F() 84 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment); in TEST_F() 115 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); in RunTest() local 124 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in RunTest() 131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest() [all …]
|
D | space_bitmap.cc | 38 const std::string& name, MemMap* mem_map, byte* heap_begin, size_t heap_capacity) { in CreateFromMemMap() argument 42 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin); in CreateFromMemMap() 47 size_t bitmap_size, const void* heap_begin) in SpaceBitmap() argument 49 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)), in SpaceBitmap() 60 const std::string& name, byte* heap_begin, size_t heap_capacity) { in Create() argument 70 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity); in Create()
|
D | card_table.cc | 58 CardTable* CardTable::Create(const byte* heap_begin, size_t heap_capacity) { in Create() argument 78 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift)); in Create()
|
D | space_bitmap.h | 48 static SpaceBitmap* Create(const std::string& name, byte* heap_begin, size_t heap_capacity); 54 byte* heap_begin, size_t heap_capacity); 196 const void* heap_begin);
|
D | card_table.h | 54 static CardTable* Create(const byte* heap_begin, size_t heap_capacity);
|
/art/runtime/gc/ |
D | heap_test.cc | 65 byte* heap_begin = reinterpret_cast<byte*>(0x1000); in TEST_F() local 68 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 70 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]); in TEST_F()
|
D | heap.cc | 371 byte* heap_begin = continuous_spaces_.front()->Begin(); in Heap() local 373 size_t heap_capacity = heap_end - heap_begin; in Heap() 380 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity)); in Heap()
|