Home
last modified time | relevance | path

Searched refs:yCount (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DRsAllocationCopyTest.java269 int yCount = random.nextInt(height - yOff); in test_RsAllocationCopy2D_Byte() local
289 s.set_yCount(yCount); in test_RsAllocationCopy2D_Byte()
298 if (yOff <= i && i < yOff + yCount && in test_RsAllocationCopy2D_Byte()
323 int yCount = random.nextInt(height - yOff); in test_RsAllocationCopy2D_Short() local
345 s.set_yCount(yCount); in test_RsAllocationCopy2D_Short()
354 if (yOff <= i && i < yOff + yCount && in test_RsAllocationCopy2D_Short()
379 int yCount = random.nextInt(height - yOff); in test_RsAllocationCopy2D_Int() local
401 s.set_yCount(yCount); in test_RsAllocationCopy2D_Int()
410 if (yOff <= i && i < yOff + yCount && in test_RsAllocationCopy2D_Int()
435 int yCount = random.nextInt(height - yOff); in test_RsAllocationCopy2D_Float() local
[all …]
Drsallocationcopy.rscript11 int yCount = 0;
18 rsAllocationCopy2DRange(aOut2D, xOff, yOff, 0, 0, xCount, yCount, aIn2D, xOff, yOff, 0, 0);
Doob.rscript23 int yCount = 0;
33 rsAllocationCopy2DRange(aOut2D, dstXOff, yOff, 0, 0, xCount, yCount,
DDebugContext.java233 int yCount = AC.RN.nextInt(AC.Height - yOff); in testDebugContextRsAllocationCopy2D_Short_Normal() local
239 Soob.set_yCount(yCount); in testDebugContextRsAllocationCopy2D_Short_Normal()
255 if (yOff <= i && i < yOff + yCount && in testDebugContextRsAllocationCopy2D_Short_Normal()
437 int yCount = random.nextInt(height - yOff); in testDebugContextRsAllocationCopy2D_Short_WrongD() local
455 Soob.set_yCount(yCount); // Legitimate Y count (w.r.t aOut) in testDebugContextRsAllocationCopy2D_Short_WrongD()
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_allocation.cpp238 int xOffset, int yOffset, int xCount, int yCount, in helperCopy2D() argument
242 int copyCount = xCount * yCount; in helperCopy2D()
262 alloc->copy2DRangeFrom(xOffset, yOffset, xCount, yCount, src); in helperCopy2D()
263 alloc->copy2DRangeTo(xOffset, yOffset, xCount, yCount, dst); in helperCopy2D()
279 int xOffset, int yOffset, int xCount, int yCount) { in helperFloatAllocationCopy2D() argument
288 for (int i = 0; i < xCount * yCount; i++) { in helperFloatAllocationCopy2D()
294 srcA->copy2DRangeFrom(xOffset, yOffset, xCount, yCount, src); in helperFloatAllocationCopy2D()
296 dstA->copy2DRangeFrom(xOffset, yOffset, xCount, yCount, srcA, xOffset, yOffset); in helperFloatAllocationCopy2D()
297 dstA->copy2DRangeTo(xOffset, yOffset, xCount, yCount, dst); in helperFloatAllocationCopy2D()
299 for (int i = 0; i < xCount * yCount; i++) { in helperFloatAllocationCopy2D()
[all …]