Lines Matching refs:heap_begin

70   uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);  in TYPED_TEST()  local
72 auto space_bitmap(TypeParam::SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TYPED_TEST()
97 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TYPED_TEST() local
101 auto space_bitmap(TypeParam::SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TYPED_TEST()
107 reinterpret_cast<mirror::Object*>(heap_begin + j * gObjectAlignment); in TYPED_TEST()
118 reinterpret_cast<mirror::Object*>(heap_begin + i * gObjectAlignment); in TYPED_TEST()
121 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * gObjectAlignment); in TYPED_TEST()
129 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TYPED_TEST() local
133 auto bitmap(TypeParam::SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TYPED_TEST()
138 const mirror::Object* obj = reinterpret_cast<mirror::Object*>(heap_begin + j); in TYPED_TEST()
152 const mirror::Object* obj_begin = reinterpret_cast<mirror::Object*>(heap_begin + range.first); in TYPED_TEST()
153 const mirror::Object* obj_end = reinterpret_cast<mirror::Object*>(heap_begin + range.second); in TYPED_TEST()
157 EXPECT_TRUE(bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + i))); in TYPED_TEST()
160 EXPECT_TRUE(bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + i))); in TYPED_TEST()
164 EXPECT_FALSE(bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + i))); in TYPED_TEST()
165 bitmap.Set(reinterpret_cast<mirror::Object*>(heap_begin + i)); in TYPED_TEST()
194 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in RunTest() local
201 SpaceBitmap space_bitmap(SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in RunTest()
208 space_bitmap.Set(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
210 space_bitmap.Clear(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
221 if (space_bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + k))) { in RunTest()
226 uintptr_t range_begin = reinterpret_cast<uintptr_t>(heap_begin) + offset; in RunTest()
227 uintptr_t range_end = reinterpret_cast<uintptr_t>(heap_begin) + end; in RunTest()