OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kAllocIncrement
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/tcmalloc/chromium/src/
page_heap_allocator.h
54
ASSERT(sizeof(T) <=
kAllocIncrement
);
72
free_area_ = reinterpret_cast<char*>(MetaDataAlloc(
kAllocIncrement
));
77
kAllocIncrement
, sizeof(T));
85
kAllocIncrement
);
87
free_avail_ =
kAllocIncrement
- guard_size;
92
kAllocIncrement
, static_cast<int>(sizeof(T)), guard_size);
112
static const int
kAllocIncrement
= 128 << 10;
/external/chromium_org/third_party/tcmalloc/vendor/src/
page_heap_allocator.h
52
ASSERT(sizeof(T) <=
kAllocIncrement
);
71
free_area_ = reinterpret_cast<char*>(MetaDataAlloc(
kAllocIncrement
));
76
kAllocIncrement
, sizeof(T));
78
free_avail_ =
kAllocIncrement
;
98
static const int
kAllocIncrement
= 128 << 10;
Completed in 1121 milliseconds