Searched refs:currentAllocs (Results 1 – 1 of 1) sorted by relevance
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