Home
last modified time | relevance | path

Searched refs:old_top (Results 1 – 6 of 6) 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.py635 old_top = self.popBlock()
637 if old_top.block_type == BlockType.CODE:
640 elif old_top.block_type == BlockType.REF_PAGE_LIKE and old_top.refpage:
642 'processBlockClosed: Closing refpage for %s', old_top.refpage)
1424 old_top = self.block_stack.pop()
1425 location = self.getBriefLocation(old_top.context)
1428 location, old_top.block_type.value, old_top.delimiter, len(self.block_stack))
1432 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:
/third_party/libffi/src/
Ddlmalloc.c3373 char* old_top = (char*)m->top; in add_segment() local
3374 msegmentptr oldsp = segment_holding(m, old_top); in add_segment()
3380 char* csp = (asp < (old_top + MIN_CHUNK_SIZE))? old_top : asp; in add_segment()
3412 if (csp != old_top) { in add_segment()
3413 mchunkptr q = (mchunkptr)old_top; in add_segment()
3414 size_t psize = csp - old_top; in add_segment()