Searched defs:old_top (Results 1 - 3 of 3) sorted by relevance

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

Completed in 965 milliseconds