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.cc33 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); in TEST_F() local
36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
60 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); in TEST_F() local
64 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
70 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment); in TEST_F()
81 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment); in TEST_F()
84 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment); in TEST_F()
115 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); in RunTest() local
124 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in RunTest()
131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
[all …]
Dspace_bitmap.cc38 const std::string& name, MemMap* mem_map, byte* heap_begin, size_t heap_capacity) { in CreateFromMemMap() argument
42 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin); in CreateFromMemMap()
47 size_t bitmap_size, const void* heap_begin) in SpaceBitmap() argument
49 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)), in SpaceBitmap()
60 const std::string& name, byte* heap_begin, size_t heap_capacity) { in Create() argument
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
78 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift)); 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);
196 const void* heap_begin);
Dcard_table.h54 static CardTable* Create(const byte* heap_begin, size_t heap_capacity);
/art/runtime/gc/
Dheap_test.cc65 byte* heap_begin = reinterpret_cast<byte*>(0x1000); 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.cc371 byte* heap_begin = continuous_spaces_.front()->Begin(); in Heap() local
373 size_t heap_capacity = heap_end - heap_begin; in Heap()
380 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity)); in Heap()