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

  /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...]
space_bitmap.cc 52 const std::string& name, MemMap* mem_map, uint8_t* heap_begin, size_t heap_capacity) {
55 const size_t bitmap_size = ComputeBitmapSize(heap_capacity);
56 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin, heap_capacity);
65 size_t heap_capacity)
70 heap_limit_(reinterpret_cast<uintptr_t>(heap_begin) + heap_capacity),
81 const std::string& name, uint8_t* heap_begin, size_t heap_capacity) {
82 // Round up since `heap_capacity` is not necessarily a multiple of `kAlignment * kBitsPerIntPtrT`
84 const size_t bitmap_size = ComputeBitmapSize(heap_capacity);
93 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity);
space_bitmap.h 47 // heap_begin of heap_capacity bytes, where objects are guaranteed to be kAlignment-aligned.
48 static SpaceBitmap* Create(const std::string& name, uint8_t* heap_begin, size_t heap_capacity);
51 // mem map. The address range covered starts at heap_begin and is of size equal to heap_capacity.
54 uint8_t* heap_begin, size_t heap_capacity);
222 size_t heap_capacity);
card_table.cc 61 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) {
64 size_t capacity = heap_capacity / kCardSize;
card_table.h 56 static CardTable* Create(const uint8_t* heap_begin, size_t heap_capacity);
  /art/runtime/gc/
heap_test.cc 86 const size_t heap_capacity = kObjectAlignment * (sizeof(intptr_t) * 8 + 1); local
88 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
90 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
heap.cc 510 size_t heap_capacity = heap_end - heap_begin; local
520 UNUSED(heap_capacity);
    [all...]

Completed in 262 milliseconds