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 89 const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1); local
91 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
93 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
heap.cc 579 size_t heap_capacity = heap_end - heap_begin; local
589 UNUSED(heap_capacity);
    [all...]
  /art/runtime/gc/accounting/
space_bitmap_test.cc 35 size_t heap_capacity = 16 * MB; local
37 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
62 size_t heap_capacity = 16 * MB; local
65 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
93 size_t heap_capacity = 16 * MB; local
96 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
100 for (size_t j = 0; j < heap_capacity; j += kObjectAlignment) {
159 size_t heap_capacity = 16 * MB; variable
166 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
169 size_t offset = RoundDown(r.next() % heap_capacity, kAlignment)
    [all...]

Completed in 1497 milliseconds