Searched refs:current_top (Results 1 – 4 of 4) sorted by relevance
121 static int current_top; variable135 line_begin = mbs_at_width(text_lines[current_top + i], &width, 1); in update_text_lines()165 begin = current_top * (text_box_y - length) / max_scroll_y; in update_y_scroll_bar()205 top = current_top + delta; in move_y()210 if (top != current_top) { in move_y()211 current_top = top; in move_y()287 if (current_top > max_scroll_y) in create()288 current_top = max_scroll_y; in create()331 current_top = 0; in create_text_box()
416 Address current_top = top(); in MarkLinearAllocationAreaBlack() local418 if (current_top != kNullAddress && current_top != current_limit) { in MarkLinearAllocationAreaBlack()419 Page::FromAllocationAreaAddress(current_top) in MarkLinearAllocationAreaBlack()420 ->CreateBlackArea(current_top, current_limit); in MarkLinearAllocationAreaBlack()425 Address current_top = top(); in UnmarkLinearAllocationArea() local427 if (current_top != kNullAddress && current_top != current_limit) { in UnmarkLinearAllocationArea()428 Page::FromAllocationAreaAddress(current_top) in UnmarkLinearAllocationArea()429 ->DestroyBlackArea(current_top, current_limit); in UnmarkLinearAllocationArea()434 Address current_top = top(); in MakeLinearAllocationAreaIterable() local436 if (current_top != kNullAddress && current_top != current_limit) { in MakeLinearAllocationAreaIterable()[all …]
647 Address current_top = top_; in TryAllocateLinearlyAligned() local648 int filler_size = Heap::GetFillToAlign(current_top, alignment); in TryAllocateLinearlyAligned()650 Address new_top = current_top + filler_size + size_in_bytes; in TryAllocateLinearlyAligned()661 return heap()->PrecedeWithFiller(HeapObject::FromAddress(current_top), in TryAllocateLinearlyAligned()665 return HeapObject::FromAddress(current_top); in TryAllocateLinearlyAligned()692 Address current_top = top_; in AllocateRawUnaligned() local693 Address new_top = current_top + size_in_bytes; in AllocateRawUnaligned()696 HeapObject object = HeapObject::FromAddress(current_top); in AllocateRawUnaligned()
140 Address current_top = allocation_info_.top(); in AllocateRawAligned() local141 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateRawAligned()