Searched refs:current_top (Results 1 – 1 of 1) sorted by relevance
315 Address current_top = allocation_info_.top(); in AllocateLinearly() local316 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() local327 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() local345 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateLinearlyAligned()[all …]