HomeSort by relevance Sort by last modified time
    Searched refs:BaseBegin (Results 1 - 4 of 4) sorted by null

  /art/runtime/
mem_map_test.cc 29 static uint8_t* BaseBegin(MemMap* mem_map) {
53 EXPECT_EQ(BaseBegin(m0), base0);
64 EXPECT_EQ(BaseBegin(m0), base0);
70 EXPECT_EQ(BaseBegin(m1), base1);
165 ASSERT_LT(reinterpret_cast<uintptr_t>(BaseBegin(map.get())), 1ULL << 32);
182 ASSERT_TRUE(map0->BaseBegin() == reinterpret_cast<void*>(ART_BASE_ADDRESS));
193 ASSERT_TRUE(map1->BaseBegin() != nullptr);
196 reinterpret_cast<uint8_t*>(map1->BaseBegin()),
231 ASSERT_EQ(reinterpret_cast<uintptr_t>(BaseBegin(map.get())), start_addr);
295 reinterpret_cast<uint8_t*>(map->BaseBegin()),
    [all...]
mem_map.h 124 void* BaseBegin() const {
133 return reinterpret_cast<uint8_t*>(BaseBegin()) + BaseSize();
mem_map.cc 74 CHECK_EQ(base, map->BaseBegin());
656 CHECK_LE(begin_map->BaseBegin(), end_map->BaseBegin());
658 while (map->BaseBegin() != end_map->BaseBegin()) {
692 CHECK_EQ(base, map->BaseBegin());
705 (it->second->BaseBegin() == end || num_gaps < kMaxGaps)) {
706 if (it->second->BaseBegin() != end) {
713 reinterpret_cast<uintptr_t>(it->second->BaseBegin()) - reinterpret_cast<uintptr_t>(end);
734 void* base_begin = map->BaseBegin();
    [all...]
  /art/runtime/gc/collector/
mark_sweep.cc     [all...]

Completed in 659 milliseconds