Home
last modified time | relevance | path

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

/third_party/alsa-utils/alsamixer/
Dtextbox.c121 static int current_top; variable
135 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()
/third_party/node/deps/v8/src/heap/
Dpaged-spaces.cc416 Address current_top = top(); in MarkLinearAllocationAreaBlack() local
418 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() local
427 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() local
436 if (current_top != kNullAddress && current_top != current_limit) { in MakeLinearAllocationAreaIterable()
[all …]
Dread-only-spaces.cc647 Address current_top = top_; in TryAllocateLinearlyAligned() local
648 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() local
693 Address new_top = current_top + size_in_bytes; in AllocateRawUnaligned()
696 HeapObject object = HeapObject::FromAddress(current_top); in AllocateRawUnaligned()
Dspaces-inl.h140 Address current_top = allocation_info_.top(); in AllocateRawAligned() local
141 int filler_size = Heap::GetFillToAlign(current_top, alignment); in AllocateRawAligned()