OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sizeclass
(Results
1 - 8
of
8
) 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
285
// the pagemap cache has a non-zero
sizeclass
.) This is a cheap (source-editing
780
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
...]
Completed in 237 milliseconds