HomeSort by relevance Sort by last modified time
    Searched defs:heap_capacity (Results 1 - 3 of 3) sorted by null

  /art/runtime/gc/
heap_test.cc 66 const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1); local
68 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
70 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
heap.cc 373 size_t heap_capacity = heap_end - heap_begin; local
380 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));
    [all...]
  /art/runtime/gc/accounting/
space_bitmap_test.cc 34 size_t heap_capacity = 16 * MB; local
36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
61 size_t heap_capacity = 16 * MB; local
64 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
116 size_t heap_capacity = 16 * MB; variable
124 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
127 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment);
141 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment);
142 size_t remain = heap_capacity - offset;

Completed in 229 milliseconds