Home | History | Annotate | Download | only in accounting

Lines Matching refs:heap_begin

33   uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);
36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
60 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);
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);
91 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);
95 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
100 const mirror::Object* obj = reinterpret_cast<mirror::Object*>(heap_begin + j);
113 const mirror::Object* obj_begin = reinterpret_cast<mirror::Object*>(heap_begin + range.first);
114 const mirror::Object* obj_end = reinterpret_cast<mirror::Object*>(heap_begin + range.second);
118 EXPECT_TRUE(bitmap->Test(reinterpret_cast<mirror::Object*>(heap_begin + i)));
121 EXPECT_TRUE(bitmap->Test(reinterpret_cast<mirror::Object*>(heap_begin + i)));
125 EXPECT_FALSE(bitmap->Test(reinterpret_cast<mirror::Object*>(heap_begin + i)));
126 bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + i));
157 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);
166 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
173 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset));
175 space_bitmap->Clear(reinterpret_cast<mirror::Object*>(heap_begin + offset));
187 space_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(heap_begin) + offset,
188 reinterpret_cast<uintptr_t>(heap_begin) + end, c);
192 if (space_bitmap->Test(reinterpret_cast<mirror::Object*>(heap_begin + k))) {