Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/dawn/src/dawn_native/
DRingBufferAllocator.cpp38 mUsedSize -= request.size; in Deallocate()
50 return mUsedSize; in GetUsedSize()
69 if (mUsedSize >= mMaxBlockSize) { in Allocate()
74 const uint64_t remainingSize = (mMaxBlockSize - mUsedSize); in Allocate()
89 mUsedSize += allocationSize; in Allocate()
98 mUsedSize += requestSize; in Allocate()
106 mUsedSize += allocationSize; in Allocate()
DRingBufferAllocator.h57 uint64_t mUsedSize = 0; // Size of the sub-alloc requests (in bytes) of the ring buffer. variable