HomeSort by relevance Sort by last modified time
    Searched defs:unmapped_bytes (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.h 145 Stats() : system_bytes(0), free_bytes(0), unmapped_bytes(0) {}
148 uint64_t unmapped_bytes; // Total bytes on returned freelists member in struct:tcmalloc::PageHeap::Stats
  /external/chromium_org/base/allocator/
allocator_shim.cc 250 size_t heap_size, allocated_bytes, unmapped_bytes; local
256 &unmapped_bytes)) {
257 *size = heap_size - allocated_bytes - unmapped_bytes;
  /external/chromium_org/content/app/
content_main_runner.cc 482 size_t heap_size, allocated_bytes, unmapped_bytes; local
488 &unmapped_bytes)) {
489 *size = heap_size - allocated_bytes - unmapped_bytes;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.h 153 Stats() : system_bytes(0), free_bytes(0), unmapped_bytes(0) {}
156 uint64_t unmapped_bytes; // Total bytes on returned freelists member in struct:tcmalloc::PageHeap::Stats
tcmalloc.cc 377 const uint64_t unmapped_bytes = local
378 stats.pageheap.unmapped_bytes + stats.metadata_unmapped_bytes;
382 const uint64_t physical_memory_used = virtual_memory_used - unmapped_bytes;
437 unmapped_bytes, unmapped_bytes / MiB,
472 stats.pageheap.unmapped_bytes / MiB);
667 - stats.pageheap.unmapped_bytes;
683 *value = stats.free_bytes + stats.unmapped_bytes;
695 *value = Static::pageheap()->stats().unmapped_bytes;
    [all...]

Completed in 466 milliseconds