Searched refs:ALLOC_COUNT (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
D | pprof.py | 8 from lib.bucket import BUCKET_ID, COMMITTED, ALLOC_COUNT, FREE_COUNT 111 com_allocs += int(words[ALLOC_COUNT]) - int(words[FREE_COUNT]) 155 int(words[ALLOC_COUNT]) - int(words[FREE_COUNT]), 157 int(words[ALLOC_COUNT]) - int(words[FREE_COUNT]),
|
D | cat.py | 9 from lib.bucket import BUCKET_ID, COMMITTED, ALLOC_COUNT, FREE_COUNT 186 int(words[ALLOC_COUNT]), 193 int(words[ALLOC_COUNT]),
|
D | expand.py | 8 from lib.bucket import BUCKET_ID, COMMITTED, ALLOC_COUNT, FREE_COUNT 106 precedence += '(alloc=%d) ' % int(words[ALLOC_COUNT])
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
D | addressmap-inl.h | 190 static const int ALLOC_COUNT = 64; variable 324 Entry* array = New<Entry>(ALLOC_COUNT); in Insert() 325 for (int i = 0; i < ALLOC_COUNT-1; i++) { in Insert() 328 array[ALLOC_COUNT-1].next = free_; in Insert()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
D | addressmap-inl.h | 190 static const int ALLOC_COUNT = 64; variable 324 Entry* array = New<Entry>(ALLOC_COUNT); in Insert() 325 for (int i = 0; i < ALLOC_COUNT-1; i++) { in Insert() 328 array[ALLOC_COUNT-1].next = free_; in Insert()
|
/external/chromium_org/tools/deep_memory_profiler/lib/ |
D | bucket.py | 14 VIRTUAL, COMMITTED, ALLOC_COUNT, FREE_COUNT, _, BUCKET_ID = range(6) variable
|