/external/chromium_org/ui/gfx/ |
rect_base_impl.h | 35 typename SizeClass, 39 void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>:: 48 typename SizeClass, 52 void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>:: 59 typename SizeClass, 63 void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>:: 72 typename SizeClass, 76 void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>:: 83 typename SizeClass, 87 void RectBase<Class, PointClass, SizeClass, InsetsClass, VectorClass, Type>: [all...] |
rect_base.h | 23 typename SizeClass, 44 const SizeClass& size() const { return size_; } 45 void set_size(const SizeClass& size) { size_ = size; } 137 void ClampToCenteredSize(const SizeClass& size); 157 RectBase(const PointClass& origin, const SizeClass& size) 159 explicit RectBase(const SizeClass& size) 169 SizeClass size_;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
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);
|
page_heap.h | 78 // We also use a simple one-level cache for hot PageID-to-sizeclass mappings, 79 // because sometimes the sizeclass is all the information we need. 130 // REQUIRES: span->sizeclass == 0 182 // Return 0 if we have no information, or else the correct sizeclass for p.
|
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...] |
central_freelist.cc | 125 Static::sizemap()->ByteSizeForClass(span->sizeclass)); 133 Static::sizemap()->ByteSizeForClass(span->sizeclass)); 328 // Cache sizeclass info eagerly. Locking is not necessary.
|
packed-cache-inl.h | 50 // tcmalloc's PageID-to-sizeclass cache, a value of 0 is used as 51 // "unknown sizeclass."
|
span.h | 51 unsigned int sizeclass : 8; // Size-class for small objects (or 0) member in struct:tcmalloc::Span
|
common.cc | 168 const int sc = SizeClass(size);
|
common.h | 197 inline int SizeClass(int size) {
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
page_heap.h | 80 // We also use a simple one-level cache for hot PageID-to-sizeclass mappings, 81 // because sometimes the sizeclass is all the information we need. 138 // REQUIRES: span->sizeclass == 0 192 // Return 0 if we have no information, or else the correct sizeclass for p.
|
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.
|
packed-cache-inl.h | 50 // tcmalloc's PageID-to-sizeclass cache, a value of 0 is used as 51 // "unknown sizeclass."
|
span.h | 51 unsigned int sizeclass : 8; // Size-class for small objects (or 0) member in struct:tcmalloc::Span
|
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...] |
common.cc | 172 const int sc = SizeClass(size);
|
common.h | 214 inline int SizeClass(int size) {
|
/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...] |
TCPackedCache.h | 50 // tcmalloc's PageID-to-sizeclass cache, a value of 0 is used as 51 // "unknown sizeclass."
|