Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/
Dlinear-allocation-area.h43 Address old_top = top_; in IncrementTop() local
46 return old_top; in IncrementTop()
Dnew-spaces.cc641 Address old_top = allocation_info_->top(); in EnsureAllocation() local
643 int filler_size = Heap::GetFillToAlign(old_top, alignment); in EnsureAllocation()
646 if (old_top + aligned_size_in_bytes > high) { in EnsureAllocation()
655 old_top = allocation_info_->top(); in EnsureAllocation()
657 filler_size = Heap::GetFillToAlign(old_top, alignment); in EnsureAllocation()
665 DCHECK(old_top + aligned_size_in_bytes <= high); in EnsureAllocation()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dmacro_checker_file.py689 old_top = self.popBlock()
691 if old_top.block_type == BlockType.CODE:
694 elif old_top.block_type == BlockType.REF_PAGE_LIKE and old_top.refpage:
696 'processBlockClosed: Closing refpage for %s', old_top.refpage)
1514 old_top = self.block_stack.pop()
1515 location = self.getBriefLocation(old_top.context)
1518 location, old_top.block_type.value, old_top.delimiter, len(self.block_stack))
1522 return old_top
/third_party/node/deps/v8/src/handles/
Dglobal-handles.cc144 BlockType* old_top = *top; in ListAdd() local
146 next_used_ = old_top; in ListAdd()
148 if (old_top != nullptr) { in ListAdd()
149 old_top->prev_used_ = this; in ListAdd()
/third_party/python/Lib/
Dpstats.py298 old_top = self.top_level
300 for func in old_top: