Home
last modified time | relevance | path

Searched refs:growth_end_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/space/
Dbump_pointer_space.cc50 growth_end_(limit), in BumpPointerSpace()
66 growth_end_(mem_map_.End()), in BumpPointerSpace()
90 growth_end_ = Limit(); in Clear()
99 CHECK_EQ(growth_end_, Limit()); in ClampGrowthLimit()
101 CHECK_LE(end, growth_end_); in ClampGrowthLimit()
102 size_t free_capacity = growth_end_ - end; in ClampGrowthLimit()
108 growth_end_ = Limit(); in ClampGrowthLimit()
Dbump_pointer_space-inl.h51 if (end + num_bytes > growth_end_) { in AllocThreadUnsafe()
77 if (UNLIKELY(new_end > growth_end_)) { in AllocNonvirtualWithoutAccounting()
Dbump_pointer_space.h88 growth_end_ = Limit(); in ClearGrowthLimit()
101 return growth_end_ - begin_; in Capacity()
183 uint8_t* growth_end_; variable