Home
last modified time | relevance | path

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

/art/runtime/gc/accounting/
Dspace_bitmap_test.cc34 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local
37 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
61 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local
65 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
71 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment); in TEST_F()
82 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment); in TEST_F()
85 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment); in TEST_F()
92 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local
96 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
101 const mirror::Object* obj = reinterpret_cast<mirror::Object*>(heap_begin + j); in TEST_F()
[all …]
Dspace_bitmap.cc52 const std::string& name, MemMap&& mem_map, uint8_t* heap_begin, size_t heap_capacity) { in CreateFromMemMap() argument
56 return { name, std::move(mem_map), bitmap_begin, bitmap_size, heap_begin, heap_capacity }; in CreateFromMemMap()
64 const void* heap_begin, in SpaceBitmap() argument
69 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)), in SpaceBitmap()
70 heap_limit_(reinterpret_cast<uintptr_t>(heap_begin) + heap_capacity), in SpaceBitmap()
81 const std::string& name, uint8_t* heap_begin, size_t heap_capacity) { in Create() argument
95 return CreateFromMemMap(name, std::move(mem_map), heap_begin, heap_capacity); in Create()
Dspace_bitmap.h48 static SpaceBitmap Create(const std::string& name, uint8_t* heap_begin, size_t heap_capacity);
55 uint8_t* heap_begin,
236 const void* heap_begin,
Dcard_table.cc61 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) { in Create() argument
84 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift)); in Create()
Dcard_table.h55 static CardTable* Create(const uint8_t* heap_begin, size_t heap_capacity);
/art/runtime/gc/
Dheap_test.cc88 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); in TEST_F() local
91 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
93 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]); in TEST_F()
Dheap.cc616 uint8_t* heap_begin = continuous_spaces_.front()->Begin(); in Heap() local
618 size_t heap_capacity = heap_end - heap_begin; in Heap()