Home
last modified time | relevance | path

Searched refs:ALLOC_COUNT (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/tools/deep_memory_profiler/subcommands/
Dpprof.py8 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]),
Dcat.py9 from lib.bucket import BUCKET_ID, COMMITTED, ALLOC_COUNT, FREE_COUNT
186 int(words[ALLOC_COUNT]),
193 int(words[ALLOC_COUNT]),
Dexpand.py8 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/
Daddressmap-inl.h190 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/
Daddressmap-inl.h190 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/
Dbucket.py14 VIRTUAL, COMMITTED, ALLOC_COUNT, FREE_COUNT, _, BUCKET_ID = range(6) variable