Home
last modified time | relevance | path

Searched refs:BaseBegin (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dmem_map_test.cc29 static uint8_t* BaseBegin(MemMap* mem_map) { in BaseBegin() function in art::MemMapTest
53 EXPECT_EQ(BaseBegin(m0), base0); in RemapAtEndTest()
64 EXPECT_EQ(BaseBegin(m0), base0); in RemapAtEndTest()
70 EXPECT_EQ(BaseBegin(m1), base1); in RemapAtEndTest()
165 ASSERT_LT(reinterpret_cast<uintptr_t>(BaseBegin(map.get())), 1ULL << 32); in TEST_F()
182 ASSERT_TRUE(map0->BaseBegin() == reinterpret_cast<void*>(ART_BASE_ADDRESS)); in TEST_F()
193 ASSERT_TRUE(map1->BaseBegin() != nullptr); in TEST_F()
196 reinterpret_cast<uint8_t*>(map1->BaseBegin()), in TEST_F()
231 ASSERT_EQ(reinterpret_cast<uintptr_t>(BaseBegin(map.get())), start_addr); in TEST_F()
295 reinterpret_cast<uint8_t*>(map->BaseBegin()), in TEST_F()
[all …]
Dmem_map.cc74 CHECK_EQ(base, map->BaseBegin()); in operator <<()
656 CHECK_LE(begin_map->BaseBegin(), end_map->BaseBegin()); in CheckNoGaps()
658 while (map->BaseBegin() != end_map->BaseBegin()) { in CheckNoGaps()
692 CHECK_EQ(base, map->BaseBegin()); in DumpMapsLocked()
705 (it->second->BaseBegin() == end || num_gaps < kMaxGaps)) { in DumpMapsLocked()
706 if (it->second->BaseBegin() != end) { in DumpMapsLocked()
713 reinterpret_cast<uintptr_t>(it->second->BaseBegin()) - reinterpret_cast<uintptr_t>(end); in DumpMapsLocked()
734 void* base_begin = map->BaseBegin(); in HasMemMap()
781 CHECK_EQ(munmap(reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(BaseBegin()) + new_size), in SetSize()
789 mem_map.BaseBegin(), mem_map.BaseEnd(), mem_map.GetProtect(), in operator <<()
Dmem_map.h124 void* BaseBegin() const { in BaseBegin() function
133 return reinterpret_cast<uint8_t*>(BaseBegin()) + BaseSize(); in BaseEnd()
/art/runtime/gc/collector/
Dmark_sweep.cc1120 sweep_array_free_buffer_mem_map_->BaseBegin()); in SweepArray()