Home | History | Annotate | Download | only in heap

Lines Matching refs:current_top

383   Address current_top = allocation_info_.top();
384 Address new_top = current_top + size_in_bytes;
388 return HeapObject::FromAddress(current_top);
394 Address current_top = allocation_info_.top();
395 int filler_size = Heap::GetFillToAlign(current_top, alignment);
397 Address new_top = current_top + filler_size + size_in_bytes;
402 return heap_->PrecedeWithFiller(HeapObject::FromAddress(current_top),
406 return AllocationResult(HeapObject::FromAddress(current_top));
412 Address current_top = allocation_info_.top();
413 int filler_size = Heap::GetFillToAlign(current_top, alignment);
415 Address new_top = current_top + filler_size + *size_in_bytes;
421 return heap()->PrecedeWithFiller(HeapObject::FromAddress(current_top),
425 return HeapObject::FromAddress(current_top);