Searched defs:heap_begin (Results 1 - 5 of 5) sorted by relevance

/art/runtime/gc/
H A Dheap_test.cc66 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); local
69 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
71 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
H A Dheap.cc486 // Add the space so its accounted for in the heap_begin and heap_end.
511 uint8_t* heap_begin = continuous_spaces_.front()->Begin(); local
513 size_t heap_capacity = heap_end - heap_begin;
/art/runtime/gc/accounting/
H A Dcard_table.cc60 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) { argument
81 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift));
H A Dspace_bitmap_test.cc33 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
60 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
64 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
70 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment);
81 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment);
84 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment);
115 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); variable
124 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin
[all...]
H A Dspace_bitmap.cc44 const std::string& name, MemMap* mem_map, uint8_t* heap_begin, size_t heap_capacity) {
48 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin);
53 size_t bitmap_size, const void* heap_begin)
55 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
66 const std::string& name, uint8_t* heap_begin, size_t heap_capacity) {
77 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity);
43 CreateFromMemMap( const std::string& name, MemMap* mem_map, uint8_t* heap_begin, size_t heap_capacity) argument
52 SpaceBitmap(const std::string& name, MemMap* mem_map, uintptr_t* bitmap_begin, size_t bitmap_size, const void* heap_begin) argument
65 Create( const std::string& name, uint8_t* heap_begin, size_t heap_capacity) argument

Completed in 607 milliseconds