Home
last modified time | relevance | path

Searched refs:remainingSize (Results 1 - 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_wire/
H A DChunkedCommandSerializer.cpp24 size_t remainingSize) { in SerializeChunkedCommand()
25 while (remainingSize > 0) { in SerializeChunkedCommand()
26 size_t chunkSize = std::min(remainingSize, mMaxAllocationSize); in SerializeChunkedCommand()
34 remainingSize -= chunkSize; in SerializeChunkedCommand()
23 SerializeChunkedCommand(const char* allocatedBuffer, size_t remainingSize) SerializeChunkedCommand() argument
H A DChunkedCommandSerializer.h106 void SerializeChunkedCommand(const char* allocatedBuffer, size_t remainingSize);
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DRingBufferAllocator.cpp74 const uint64_t remainingSize = (mMaxBlockSize - mUsedSize); in Allocate() local
75 if (allocationSize > remainingSize) { in Allocate()
H A DRenderEncoderBase.cpp293 uint64_t remainingSize = bufferSize - offset; in APISetIndexBuffer()
296 size = remainingSize; in APISetIndexBuffer()
298 DAWN_INVALID_IF(size > remainingSize, in APISetIndexBuffer()
350 uint64_t remainingSize = bufferSize - offset; in APISetVertexBuffer()
353 size = remainingSize; in APISetVertexBuffer()
355 DAWN_INVALID_IF(size > remainingSize, in APISetVertexBuffer()
H A DCommandAllocator.h227 size_t remainingSize = static_cast<size_t>(mEndPtr - mCurrentPtr); in Allocate() local
231 if ((remainingSize >= kWorstCaseAdditionalSize) && in Allocate()
232 (remainingSize - kWorstCaseAdditionalSize >= commandSize)) { in Allocate()
H A DDynamicUploader.cpp53 const uint64_t remainingSize = in AllocateInternal() local
55 if (allocationSize <= remainingSize) { in AllocateInternal()
H A DCommandEncoder.cpp894 uint64_t remainingSize = bufferSize - offset; in APIClearBuffer()
896 size = remainingSize; in APIClearBuffer()
898 DAWN_INVALID_IF(size > remainingSize, in APIClearBuffer()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DBinaryStream.h146 size_t remainingSize() const in remainingSize() function in gl::BinaryInputStream
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DBufferVk.cpp665 size_t remainingSize = totalSize - remainingStart; in ghostMappedBuffer() local
666 if (remainingSize != 0) in ghostMappedBuffer()
669 remainingSize); in ghostMappedBuffer()
/third_party/skia/third_party/vulkanmemoryallocator/include/
H A Dvk_mem_alloc.h9581 VkDeviceSize remainingSize = totalSize - suballocItem->size; in CheckAllocation() local
9582 while(remainingSize > 0) in CheckAllocation()
9607 remainingSize = (lastSuballocItem->size < remainingSize) ? in CheckAllocation()
9608 remainingSize - lastSuballocItem->size : 0; in CheckAllocation()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
H A DProgramD3D.cpp892 size_t dataSize = stream->remainingSize();

Completed in 39 milliseconds