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

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
frag_unittest.cc 71 size_t free_bytes = 0; local
74 free_bytes += kAllocSize;
84 CHECK_GT(double(slack), 0.9*free_bytes);
85 CHECK_LT(double(slack), 1.1*free_bytes);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
frag_unittest.cc 71 size_t free_bytes = 0; local
74 free_bytes += kAllocSize;
84 CHECK_GT(double(slack), 0.9*free_bytes);
85 CHECK_LT(double(slack), 1.1*free_bytes);
  /external/chromium_org/ash/system/monitor/
tray_monitor.cc 66 base::string16 free_bytes = local
68 output = base::StringPrintf("free: %s", UTF16ToUTF8(free_bytes).c_str());
  /external/chromium_org/net/quic/
quic_packet_creator.cc 110 const size_t free_bytes = BytesFree(); local
125 if (data.size() + min_frame_size > free_bytes) {
130 min<size_t>(free_bytes - min_last_frame_size, data.size());
  /external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap.h 145 Stats() : system_bytes(0), free_bytes(0), unmapped_bytes(0) {}
147 uint64_t free_bytes; // Total bytes on normal freelists member in struct:tcmalloc::PageHeap::Stats
  /external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap.h 153 Stats() : system_bytes(0), free_bytes(0), unmapped_bytes(0) {}
155 uint64_t free_bytes; // Total bytes on normal freelists member in struct:tcmalloc::PageHeap::Stats
  /external/chromium_org/v8/src/
spaces.cc 2040 intptr_t free_bytes = 0; local
2159 intptr_t free_bytes = 0; local
    [all...]
mark-compact.cc 825 intptr_t free_bytes = 0; local
828 free_bytes = (p->area_size() - p->LiveBytes());
832 free_bytes = sizes.Total();
835 int free_pct = static_cast<int>(free_bytes * 100) / p->area_size();
838 estimated_release += free_bytes;
848 static_cast<int>(free_bytes),
849 static_cast<double>(free_bytes * 100) / p->area_size(),
    [all...]
  /external/v8/src/
mark-compact.cc 578 intptr_t free_bytes = 0; local
581 free_bytes = (p->area_size() - p->LiveBytes());
585 free_bytes = sizes.Total();
588 int free_pct = static_cast<int>(free_bytes * 100) / p->area_size();
591 estimated_release += 2 * p->area_size() - free_bytes;
601 static_cast<int>(free_bytes),
602 static_cast<double>(free_bytes * 100) / p->area_size(),
    [all...]

Completed in 729 milliseconds