Home
last modified time | relevance | path

Searched refs:fLiveCount (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/
DGrMemoryPool.cpp41 SkASSERT(0 == fHead->fLiveCount); in ~GrMemoryPool()
74 fTail->fLiveCount += 1; in allocate()
89 if (1 == block->fLiveCount) { in release()
93 fHead->fLiveCount = 0; in release()
111 --block->fLiveCount; in release()
129 block->fLiveCount = 0; in CreateBlock()
151 allocCount += block->fLiveCount; in validate()
166 SkASSERT(block->fLiveCount); in validate()
171 if (!block->fLiveCount) { in validate()
DGrMemoryPool.h51 bool isEmpty() const { return fTail == fHead && !fHead->fLiveCount; } in isEmpty()
83 int fLiveCount; ///< number of outstanding allocations in the member