Searched refs:free_bytes (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dfrag_unittest.cc71 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);
H A Dpage_heap_test.cc18 EXPECT_EQ(free_pages, stats.free_bytes >> kPageShift);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dfrag_unittest.cc71 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);
H A Dpage_heap_test.cc18 EXPECT_EQ(free_pages, stats.free_bytes >> kPageShift);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpage_heap.h153 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
H A Dtcmalloc.cc388 - stats.pageheap.free_bytes
433 stats.pageheap.free_bytes, stats.pageheap.free_bytes / MiB,
474 nonempty_sizes, stats.pageheap.free_bytes / MiB,
669 - stats.pageheap.free_bytes
686 *value = stats.free_bytes + stats.unmapped_bytes;
692 *value = Static::pageheap()->stats().free_bytes;
1403 info.fordblks = static_cast<int>(stats.pageheap.free_bytes +
1409 - stats.pageheap.free_bytes
H A Dpage_heap.cc306 stats_.free_bytes += (span->length << kPageShift);
317 stats_.free_bytes -= (span->length << kPageShift);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dpage_heap.h145 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
H A Dtcmalloc.cc371 - stats.pageheap.free_bytes
403 stats.pageheap.free_bytes, stats.pageheap.free_bytes / MiB,
443 nonempty_sizes, stats.pageheap.free_bytes / MiB,
638 - stats.pageheap.free_bytes
655 *value = stats.free_bytes + stats.unmapped_bytes;
682 *value = Static::pageheap()->stats().free_bytes;
1358 info.fordblks = static_cast<int>(stats.pageheap.free_bytes +
1364 - stats.pageheap.free_bytes
H A Dpage_heap.cc245 stats_.free_bytes += (span->length << kPageShift);
256 stats_.free_bytes -= (span->length << kPageShift);
/external/chromium_org/net/quic/
H A Dquic_framer.cc275 size_t free_bytes,
282 return free_bytes;
287 if (frame_len <= free_bytes) {
297 free_bytes >= GetMinAckFrameSize(PACKET_6BYTE_SEQUENCE_NUMBER,
302 DVLOG(1) << "Truncating large frame, free bytes: " << free_bytes;
303 return free_bytes;
273 GetSerializedFrameLength( const QuicFrame& frame, size_t free_bytes, bool first_frame, bool last_frame, InFecGroup is_in_fec_group, QuicSequenceNumberLength sequence_number_length) argument
H A Dquic_framer.h294 size_t free_bytes,
/external/chromium_org/v8/src/heap/
H A Dspaces.cc2029 intptr_t free_bytes = 0; local
2037 free_bytes = category->available();
2048 return free_bytes;
2160 intptr_t free_bytes = 0; local
2161 free_bytes += small_list_.Concatenate(free_list->small_list());
2162 free_bytes += medium_list_.Concatenate(free_list->medium_list());
2163 free_bytes += large_list_.Concatenate(free_list->large_list());
2164 free_bytes += huge_list_.Concatenate(free_list->huge_list());
2165 return free_bytes;
H A Dmark-compact.cc857 intptr_t free_bytes = 0; local
860 free_bytes = (p->area_size() - p->LiveBytes());
864 free_bytes = sizes.Total();
867 int free_pct = static_cast<int>(free_bytes * 100) / p->area_size();
870 estimated_release += free_bytes;
879 static_cast<int>(free_bytes),
880 static_cast<double>(free_bytes * 100) / p->area_size(),

Completed in 194 milliseconds