Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dregion_space-inl.h121 uint8_t* new_top; in Alloc() local
124 new_top = old_top + num_bytes; in Alloc()
125 if (UNLIKELY(new_top > end_)) { in Alloc()
128 } while (!top_.CompareExchangeWeakRelaxed(old_top, new_top)); in Alloc()
132 DCHECK_LE(new_top, end_); in Alloc()
Dregion_space.h447 void SetTop(uint8_t* new_top) { in SetTop() argument
448 top_.StoreRelaxed(new_top); in SetTop()