Searched refs:BaseBegin (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | mem_map_test.cc | 27 static byte* BaseBegin(MemMap* mem_map) { in BaseBegin() function in art::MemMapTest 50 EXPECT_EQ(BaseBegin(m0), base0); in RemapAtEndTest() 61 EXPECT_EQ(BaseBegin(m0), base0); in RemapAtEndTest() 67 EXPECT_EQ(BaseBegin(m1), base1); in RemapAtEndTest() 159 ASSERT_LT(reinterpret_cast<uintptr_t>(BaseBegin(map.get())), 1ULL << 32); in TEST_F() 175 ASSERT_TRUE(map0->BaseBegin() == reinterpret_cast<void*>(ART_BASE_ADDRESS)); in TEST_F() 185 ASSERT_TRUE(map1->BaseBegin() != nullptr); in TEST_F() 188 reinterpret_cast<byte*>(map1->BaseBegin()), in TEST_F() 219 ASSERT_EQ(reinterpret_cast<uintptr_t>(BaseBegin(map.get())), start_addr); in TEST_F() 279 byte* map_base = reinterpret_cast<byte*>(map->BaseBegin()); in TEST_F()
|
D | mem_map.cc | 67 CHECK_EQ(base, map->BaseBegin()); in operator <<() 599 CHECK_LE(begin_map->BaseBegin(), end_map->BaseBegin()); in CheckNoGaps() 601 while (map->BaseBegin() != end_map->BaseBegin()) { in CheckNoGaps() 622 void* base_begin = map->BaseBegin(); in HasMemMap() 664 mem_map.BaseBegin(), mem_map.BaseEnd(), mem_map.GetProtect(), in operator <<()
|
D | mem_map.h | 114 void* BaseBegin() const { in BaseBegin() function 123 return reinterpret_cast<byte*>(BaseBegin()) + BaseSize(); in BaseEnd()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 1003 sweep_array_free_buffer_mem_map_->BaseBegin()); in SweepArray()
|