Home
last modified time | relevance | path

Searched refs:currentAllocs (Results 1 – 4 of 4) sorted by relevance

/external/chromium-trace/trace-viewer/src/tcmalloc/
Dheap.js44 currentAllocs: 0, property
66 heapEntry.currentAllocs += alloc.currentAllocs;
75 currentAllocs: alloc.currentAllocs, property
Dheap_test.js37 assertEquals(10, snapshot.total_.currentAllocs);
86 assertEquals(2, trace.currentAllocs);
95 assertEquals(8, trace.currentAllocs);
103 assertEquals(5, trace.currentAllocs);
Dtcmalloc_snapshot_view.js48 snapshot.total_.currentAllocs +
82 traceName, isLeaf, trace.currentBytes, trace.currentAllocs);
/external/tinyxml2/
Dtinyxml2.h250 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