Home
last modified time | relevance | path

Searched refs:FREE_COUNT (Results 1 – 4 of 4) 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
187 int(words[FREE_COUNT]),
194 int(words[FREE_COUNT]),
Dexpand.py8 from lib.bucket import BUCKET_ID, COMMITTED, ALLOC_COUNT, FREE_COUNT
107 precedence += '(free=%d) ' % int(words[FREE_COUNT])
/external/chromium_org/tools/deep_memory_profiler/lib/
Dbucket.py14 VIRTUAL, COMMITTED, ALLOC_COUNT, FREE_COUNT, _, BUCKET_ID = range(6) variable