Home
last modified time | relevance | path

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

/external/OpenCL-CTS/test_conformance/vectors/
Dtype_replacer.cpp25 size_t copyCount = 0; in doReplace() local
37 for (; copyCount < destLength && *sourcePtr;) in doReplace()
45 > destLength - copyCount) in doReplace()
49 copyCount += nJump; in doReplace()
59 if (nJump > destLength - copyCount) in doReplace()
63 copyCount += nJump; in doReplace()
73 if (nJump > destLength - copyCount) in doReplace()
77 copyCount += nJump; in doReplace()
84 return copyCount; in doReplace()
90 size_t copyCount = 0; in doSingleReplace() local
[all …]
/external/llvm-project/compiler-rt/test/tsan/libdispatch/
Dsync-block-copy.cpp14 static int copyCount; member
16 fprintf(stderr, "copyCount = %d\n", copyCount); in printCopyCount()
19 MyClass(const MyClass &obj) { copyCount++; }; in MyClass()
24 int MyClass::copyCount = 0; member in MyClass
/external/llvm-project/flang/lib/Lower/
DCharacterExpr.cpp244 mlir::Value copyCount = lhs.getLen(); in createAssign() local
246 copyCount = in createAssign()
260 auto temp = createTemp(getCharacterType(rhs), copyCount); in createAssign()
261 createCopy(temp, rhs, copyCount); in createAssign()
266 createCopy(lhs, safeRhs, copyCount); in createAssign()
272 createPadding(lhs, copyCount, maxPadding); in createAssign()
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
DVDUBuffer.java751 int copyCount = bufSize - amount < 0 ? bufSize : amount; in setBufferSize()
753 System.arraycopy(charArray, copyStart, cbuf, 0, copyCount); in setBufferSize()
756 System.arraycopy(charAttributes, copyStart, abuf, 0, copyCount); in setBufferSize()
760 bufSize = copyCount; in setBufferSize()
/external/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()
/external/skqp/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()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/sym/
DByteQuadsCanonicalizer.java1128 int copyCount = 0; in rehash() local
1135 ++copyCount; in rehash()
1167 if (copyCount != oldCount) { in rehash()
1168 … throw new IllegalStateException("Failed rehash(): old count="+oldCount+", copyCount="+copyCount); in rehash()
/external/deqp/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()
/external/angle/src/libANGLE/renderer/vulkan/
DREADME.md70 commandBuffer->copyBuffer(srcBuffer->getBuffer(), destBuffer->getBuffer(), copyCount, copies);