Home
last modified time | relevance | path

Searched refs:requestSize (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_native/
DRingBufferAllocator.cpp94 const uint64_t requestSize = (mMaxBlockSize - mUsedEndOffset) + allocationSize; in Allocate() local
98 mUsedSize += requestSize; in Allocate()
99 mCurrentRequestSize += requestSize; in Allocate()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DRingBuffer.cpp124 const size_t requestSize = (mBufferSize - mUsedEndOffset) + allocSize; in SubAllocate() local
128 mUsedSize += requestSize; in SubAllocate()
129 mCurrentRequestSize += requestSize; in SubAllocate()
/third_party/flutter/skia/src/gpu/
DGrBufferAllocPool.h150 bool createBlock(size_t requestSize);
DGrBufferAllocPool.cpp327 bool GrBufferAllocPool::createBlock(size_t requestSize) { in createBlock() argument
328 size_t size = SkTMax(requestSize, kDefaultBufferSize); in createBlock()
/third_party/skia/src/gpu/
DGrBufferAllocPool.h151 bool createBlock(size_t requestSize);
DGrBufferAllocPool.cpp313 bool GrBufferAllocPool::createBlock(size_t requestSize) { in createBlock() argument
314 size_t size = std::max(requestSize, kDefaultBufferSize); in createBlock()