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

  /external/chromium_org/third_party/tcmalloc/chromium/src/
span.h 51 unsigned int sizeclass : 8; // Size-class for small objects (or 0) member in struct:tcmalloc::Span
page_heap.cc 150 ASSERT(span->sizeclass == 0);
224 span->sizeclass = 0;
400 span->sizeclass = sc;
439 if (span->sizeclass > 0) {
441 const size_t osize = Static::sizemap()->class_to_size(span->sizeclass);
central_freelist.cc 125 Static::sizemap()->ByteSizeForClass(span->sizeclass));
133 Static::sizemap()->ByteSizeForClass(span->sizeclass));
325 // Cache sizeclass info eagerly. Locking is not necessary.
tcmalloc.cc 59 // THE PAGEID-TO-SIZECLASS CACHE
60 // Hot PageID-to-sizeclass mappings are held by pagemap_cache_. If this cache
62 // the sizeclass is 0. The cache may have stale information for pages that do
64 // in Populate() for pages with sizeclass > 0 objects, and in do_malloc() and
282 // the pagemap cache has a non-zero sizeclass.) This is a cheap (source-editing
777 const size_t cl = Static::sizemap()->SizeClass(size);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
span.h 51 unsigned int sizeclass : 8; // Size-class for small objects (or 0) member in struct:tcmalloc::Span
page_heap.cc 149 ASSERT(span->sizeclass == 0);
193 span->sizeclass = 0;
339 span->sizeclass = sc;
378 if (span->sizeclass > 0) {
380 const size_t osize = Static::sizemap()->class_to_size(span->sizeclass);
central_freelist.cc 125 Static::sizemap()->ByteSizeForClass(span->sizeclass));
133 Static::sizemap()->ByteSizeForClass(span->sizeclass));
328 // Cache sizeclass info eagerly. Locking is not necessary.
tcmalloc.cc 59 // THE PAGEID-TO-SIZECLASS CACHE
60 // Hot PageID-to-sizeclass mappings are held by pagemap_cache_. If this cache
62 // the sizeclass is 0. The cache may have stale information for pages that do
64 // in Populate() for pages with sizeclass > 0 objects, and in do_malloc() and
285 // the pagemap cache has a non-zero sizeclass.) This is a cheap (source-editing
770 const size_t cl = Static::sizemap()->SizeClass(size);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
FastMalloc.cpp 60 // THE PAGEID-TO-SIZECLASS CACHE
61 // Hot PageID-to-sizeclass mappings are held by pagemap_cache_. If this cache
63 // the sizeclass is 0. The cache may have stale information for pages that do
65 // in Populate() for pages with sizeclass > 0 objects, and in do_malloc() and
688 static ALWAYS_INLINE size_t SizeClass(size_t size) {
795 const size_t sc = SizeClass(size);
950 return ByteSizeForClass(SizeClass(bytes));
    [all...]

Completed in 764 milliseconds