Searched refs:heap_capacity (Results 1 – 7 of 7) sorted by relevance
/art/runtime/gc/accounting/ |
D | space_bitmap_test.cc | 34 size_t heap_capacity = 16 * MB; in TEST_F() local 36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 61 size_t heap_capacity = 16 * MB; in TEST_F() local 64 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 92 size_t heap_capacity = 16 * MB; in TEST_F() local 95 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 99 for (size_t j = 0; j < heap_capacity; j += kObjectAlignment) { in TEST_F() 158 size_t heap_capacity = 16 * MB; in RunTest() local 166 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in RunTest() 169 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment); in RunTest() [all …]
|
D | space_bitmap.cc | 47 const std::string& name, MemMap* mem_map, uint8_t* heap_begin, size_t heap_capacity) { in CreateFromMemMap() argument 50 const size_t bitmap_size = ComputeBitmapSize(heap_capacity); in CreateFromMemMap() 71 const std::string& name, uint8_t* heap_begin, size_t heap_capacity) { in Create() argument 73 const size_t bitmap_size = ComputeBitmapSize(heap_capacity); in Create() 82 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity); in Create()
|
D | card_table.cc | 60 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) { in Create() argument 63 size_t capacity = heap_capacity / kCardSize; in Create()
|
D | space_bitmap.h | 49 static SpaceBitmap* Create(const std::string& name, uint8_t* heap_begin, size_t heap_capacity); 55 uint8_t* heap_begin, size_t heap_capacity);
|
D | card_table.h | 55 static CardTable* Create(const uint8_t* heap_begin, size_t heap_capacity);
|
/art/runtime/gc/ |
D | heap_test.cc | 67 const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1); in TEST_F() local 69 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F() 71 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]); in TEST_F()
|
D | heap.cc | 506 size_t heap_capacity = heap_end - heap_begin; in Heap() local 516 UNUSED(heap_capacity); in Heap()
|