Searched refs:currentAllocs (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
D | heap.js | 44 currentAllocs: 0, property 66 heapEntry.currentAllocs += alloc.currentAllocs; 75 currentAllocs: alloc.currentAllocs, property
|
D | heap_test.js | 37 assertEquals(10, snapshot.total_.currentAllocs); 86 assertEquals(2, trace.currentAllocs); 95 assertEquals(8, trace.currentAllocs); 103 assertEquals(5, trace.currentAllocs);
|
D | tcmalloc_snapshot_view.js | 48 snapshot.total_.currentAllocs + 82 traceName, isLeaf, trace.currentBytes, trace.currentAllocs);
|
/external/tinyxml2/ |
D | tinyxml2.h | 250 MemPoolT() : root(0), currentAllocs(0), nAllocs(0), maxAllocs(0) {} in MemPoolT() 259 int CurrentAllocs() const { return currentAllocs; } in CurrentAllocs() 276 ++currentAllocs; in Alloc() 277 if ( currentAllocs > maxAllocs ) maxAllocs = currentAllocs; in Alloc() 283 --currentAllocs; in Free() 291 … name, maxAllocs, maxAllocs*SIZE/1024, currentAllocs, SIZE, nAllocs, blockPtrs.Size() ); in Trace() 306 int currentAllocs; variable
|