Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dregion_space-inl.h120 uint8_t* old_top; in Alloc() local
123 old_top = top_.LoadRelaxed(); in Alloc()
124 new_top = old_top + num_bytes; in Alloc()
128 } while (!top_.CompareExchangeWeakRelaxed(old_top, new_top)); in Alloc()
131 DCHECK_LT(old_top, end_); in Alloc()
138 return reinterpret_cast<mirror::Object*>(old_top); in Alloc()