Home
last modified time | relevance | path

Searched refs:copyCount (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DSegmentedGrowableMemoryByteArray.java73 int copyCount = 0; in internalPut() local
74 while (copyCount < length) { in internalPut()
78 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalPut()
82 copyCount += copyLength; in internalPut()
84 return copyCount; in internalPut()
97 int copyCount = 0; in internalGet() local
98 while (copyCount < length) { in internalGet()
102 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalGet()
106 copyCount += copyLength; in internalGet()
108 return copyCount; in internalGet()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DSegmentedGrowableMemoryByteArray.java73 int copyCount = 0; in internalPut() local
74 while (copyCount < length) { in internalPut()
78 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalPut()
82 copyCount += copyLength; in internalPut()
84 return copyCount; in internalPut()
97 int copyCount = 0; in internalGet() local
98 while (copyCount < length) { in internalGet()
102 int copyLength = Math.min(length - copyCount, buffer.length - bufferOffset); in internalGet()
106 copyCount += copyLength; in internalGet()
108 return copyCount; in internalGet()
/third_party/boost/libs/core/test/swap/
Dswap_test_class.hpp33 ++copyCount(); in swap_test_class()
40 ++copyCount(); in operator =()
64 static unsigned int copy_count(){ return copyCount(); } in copy_count()
71 copyCount() = 0; in reset()
83 static unsigned int& copyCount() in copyCount() function in swap_test_class
/third_party/skia/tests/
DStreamTest.cpp414 size_t copyCount = std::min(fCount - fIdx, size); in read() local
415 if (copyCount) { in read()
416 memcpy(buffer, &fData[fIdx], copyCount); in read()
417 fIdx += copyCount; in read()
419 return copyCount; in read()
/third_party/flutter/skia/tests/
DStreamTest.cpp404 size_t copyCount = SkTMin(fCount - fIdx, size); in read() local
405 if (copyCount) { in read()
406 memcpy(buffer, &fData[fIdx], copyCount); in read()
407 fIdx += copyCount; in read()
409 return copyCount; in read()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DBufferVk.cpp343 uint32_t copyCount, in copyToBuffer() argument
348 commandBuffer->copyBuffer(mBuffer.getBuffer(), destBuffer->getBuffer(), copyCount, copies); in copyToBuffer()
DBufferVk.h107 uint32_t copyCount,
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrCopyTests.cpp452 size_t copyCount, in genCopies() argument
477 copies->reserve(copyCount); in genCopies()
479 for (size_t copyNdx = 0; copyNdx < copyCount; copyNdx++) in genCopies()
585 const size_t copyCount = 10; in imageCopyTest() local
596 …genCopies(rng, copyCount, config.src.format, config.src.size, config.dst.format, config.dst.size, … in imageCopyTest()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DREADME.md70 commandBuffer->copyBuffer(srcBuffer->getBuffer(), dstBuffer->getBuffer(), copyCount, copies);