Home
last modified time | relevance | path

Searched refs:heap_capacity (Results 1 – 7 of 7) sorted by relevance

/art/runtime/gc/accounting/
Dspace_bitmap_test.cc34 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()
116 size_t heap_capacity = 16 * MB; in RunTest() local
124 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in RunTest()
127 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment); in RunTest()
141 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment); in RunTest()
142 size_t remain = heap_capacity - offset; in RunTest()
Dspace_bitmap.cc38 const std::string& name, MemMap* mem_map, byte* heap_begin, size_t heap_capacity) { in CreateFromMemMap() argument
41 const size_t bitmap_size = ComputeBitmapSize(heap_capacity); in CreateFromMemMap()
60 const std::string& name, byte* heap_begin, size_t heap_capacity) { in Create() argument
62 const size_t bitmap_size = ComputeBitmapSize(heap_capacity); in Create()
70 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity); in Create()
Dcard_table.cc58 CardTable* CardTable::Create(const byte* heap_begin, size_t heap_capacity) { in Create() argument
60 size_t capacity = heap_capacity / kCardSize; in Create()
Dspace_bitmap.h48 static SpaceBitmap* Create(const std::string& name, byte* heap_begin, size_t heap_capacity);
54 byte* heap_begin, size_t heap_capacity);
Dcard_table.h54 static CardTable* Create(const byte* heap_begin, size_t heap_capacity);
/art/runtime/gc/
Dheap_test.cc66 const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1); 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()
Dheap.cc373 size_t heap_capacity = heap_end - heap_begin; in Heap() local
380 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity)); in Heap()