Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dspaces-inl.h315 Address current_top = allocation_info_.top(); in AllocateLinearly() local
316 Address new_top = current_top + size_in_bytes; in AllocateLinearly()
320 return HeapObject::FromAddress(current_top); in AllocateLinearly()
326 Address current_top = allocation_info_.top(); in AllocateRawAligned() local
327 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateRawAligned()
329 Address new_top = current_top + filler_size + size_in_bytes; in AllocateRawAligned()
334 return heap_->PrecedeWithFiller(HeapObject::FromAddress(current_top), in AllocateRawAligned()
338 return AllocationResult(HeapObject::FromAddress(current_top)); in AllocateRawAligned()
344 Address current_top = allocation_info_.top(); in AllocateLinearlyAligned() local
345 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateLinearlyAligned()
[all …]