Searched refs:heap_begin (Results 1 – 7 of 7) sorted by relevance
/art/runtime/gc/accounting/ |
D | space_bitmap_test.cc | 34 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local 37 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 61 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local 65 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 71 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment); in TEST_F() 82 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment); in TEST_F() 85 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment); in TEST_F() 92 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local 96 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 101 const mirror::Object* obj = reinterpret_cast<mirror::Object*>(heap_begin + j); in TEST_F() [all …]
|
D | space_bitmap.cc | 52 const std::string& name, MemMap&& mem_map, uint8_t* heap_begin, size_t heap_capacity) { in CreateFromMemMap() argument 57 name, std::move(mem_map), bitmap_begin, bitmap_size, heap_begin, heap_capacity); in CreateFromMemMap() 65 const void* heap_begin, in SpaceBitmap() argument 70 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)), in SpaceBitmap() 71 heap_limit_(reinterpret_cast<uintptr_t>(heap_begin) + heap_capacity), in SpaceBitmap() 82 const std::string& name, uint8_t* heap_begin, size_t heap_capacity) { in Create() argument 96 return CreateFromMemMap(name, std::move(mem_map), heap_begin, heap_capacity); in Create()
|
D | space_bitmap.h | 48 static SpaceBitmap* Create(const std::string& name, uint8_t* heap_begin, size_t heap_capacity); 55 uint8_t* heap_begin, 229 const void* heap_begin,
|
D | card_table.cc | 61 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) { in Create() argument 84 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift)); in Create()
|
D | card_table.h | 55 static CardTable* Create(const uint8_t* heap_begin, size_t heap_capacity);
|
/art/runtime/gc/ |
D | heap_test.cc | 88 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); in TEST_F() local 91 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 93 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]); in TEST_F()
|
D | heap.cc | 577 uint8_t* heap_begin = continuous_spaces_.front()->Begin(); in Heap() local 579 size_t heap_capacity = heap_end - heap_begin; in Heap()
|