Lines Matching refs:heap_capacity
71 size_t heap_capacity = 16 * MB; in TYPED_TEST() local
72 auto space_bitmap(TypeParam::SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TYPED_TEST()
98 size_t heap_capacity = 16 * MB; in TYPED_TEST() local
101 auto space_bitmap(TypeParam::SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TYPED_TEST()
130 size_t heap_capacity = 16 * MB; in TYPED_TEST() local
133 auto bitmap(TypeParam::SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in TYPED_TEST()
137 for (size_t j = 0; j < heap_capacity; j += gObjectAlignment) { in TYPED_TEST()
195 size_t heap_capacity = 16 * MB; in RunTest() local
201 SpaceBitmap space_bitmap(SpaceBitmap::Create("test bitmap", heap_begin, heap_capacity)); in RunTest()
204 size_t offset = RoundDown(r.next() % heap_capacity, alignment); in RunTest()
215 const size_t offset = RoundDown(r.next() % heap_capacity, alignment); in RunTest()
216 const size_t remain = heap_capacity - offset; in RunTest()