Lines Matching refs:heap_begin

34   uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);  in TEST_F()  local
37 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
61 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local
65 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
71 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment); in TEST_F()
82 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment); in TEST_F()
85 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment); in TEST_F()
92 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in TEST_F() local
96 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TEST_F()
101 const mirror::Object* obj = reinterpret_cast<mirror::Object*>(heap_begin + j); in TEST_F()
114 const mirror::Object* obj_begin = reinterpret_cast<mirror::Object*>(heap_begin + range.first); in TEST_F()
115 const mirror::Object* obj_end = reinterpret_cast<mirror::Object*>(heap_begin + range.second); in TEST_F()
119 EXPECT_TRUE(bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + i))); in TEST_F()
122 EXPECT_TRUE(bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + i))); in TEST_F()
126 EXPECT_FALSE(bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + i))); in TEST_F()
127 bitmap.Set(reinterpret_cast<mirror::Object*>(heap_begin + i)); in TEST_F()
158 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); in RunTest() local
166 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in RunTest()
173 space_bitmap.Set(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
175 space_bitmap.Clear(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
186 if (space_bitmap.Test(reinterpret_cast<mirror::Object*>(heap_begin + k))) { in RunTest()
191 uintptr_t range_begin = reinterpret_cast<uintptr_t>(heap_begin) + offset; in RunTest()
192 uintptr_t range_end = reinterpret_cast<uintptr_t>(heap_begin) + end; in RunTest()