Searched defs:freed_bytes (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler.c262 uintptr_t freed_bytes = 0; // Bytes freed in this cycle. local
272 freed_bytes = alloc->end - alloc->start + 1;
288 freed_bytes = del_end - alloc->start + 1;
300 freed_bytes = alloc->end - del_start + 1;
307 freed_bytes = del_end - del_start + 1;
313 freed_bytes += (old_end - del_end);
318 assert(st->alloc_bytes >= freed_bytes);
319 st->alloc_bytes -= freed_bytes;
322 stats->total_alloc_bytes -= freed_bytes;
/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc640 intptr_t freed_bytes = space->free_list()->Concatenate(free_list); local
641 space->AddToAccountingStats(freed_bytes);
642 space->DecrementUnsweptFreeBytes(freed_bytes);
3317 intptr_t freed_bytes = 0; local
3332 freed_bytes = Free<parallelism>(space, free_list, free_start, size);
3333 max_freed_bytes = Max(freed_bytes, max_freed_bytes);
3366 freed_bytes = Free<parallelism>(space, free_list, free_start, size);
3367 max_freed_bytes = Max(freed_bytes, max_freed_bytes);

Completed in 773 milliseconds