Home
last modified time | relevance | path

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

/external/google-breakpad/src/client/linux/dump_writer_common/
Dseccomp_unwinder.cc52 uint64_t old_top = top; in PopSeccompStackFrame() local
77 if (top - offsetof(__typeof__(seccomp_stackframe), deadbeef) < old_top || in PopSeccompStackFrame()
115 uint32_t old_top = top; in PopSeccompStackFrame()
131 if (top - offsetof(__typeof__(seccomp_stackframe), deadbeef) < old_top || in PopSeccompStackFrame()
/external/v8/src/heap/
Dspaces.cc1531 Address old_top = allocation_info_.top(); in AllocateChunk() local
1540 InlineAllocationStep(old_top, allocation_info_.top(), nullptr, 0); in AllocateChunk()
1615 Address old_top = allocation_info_.top(); in AllocateChunk() local
1617 int filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk()
1620 if (old_top + aligned_size_in_bytes >= high) { in AllocateChunk()
1626 InlineAllocationStep(old_top, allocation_info_.top(), nullptr, 0); in AllocateChunk()
1628 old_top = allocation_info_.top(); in AllocateChunk()
1630 filler_size = Heap::GetFillToAlign(old_top, alignment); in AllocateChunk()
1634 DCHECK(old_top + aligned_size_in_bytes < high); in AllocateChunk()
1641 Address new_top = old_top + aligned_size_in_bytes; in AllocateChunk()
[all …]
/external/dlmalloc/
Dmalloc.c4000 char* old_top = (char*)m->top; in add_segment() local
4001 msegmentptr oldsp = segment_holding(m, old_top); in add_segment()
4007 char* csp = (asp < (old_top + MIN_CHUNK_SIZE))? old_top : asp; in add_segment()
4039 if (csp != old_top) { in add_segment()
4040 mchunkptr q = (mchunkptr)old_top; in add_segment()
4041 size_t psize = csp - old_top; in add_segment()