Home
last modified time | relevance | path

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

/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java2016 int srcRowByteCount = srcRowStride; in imageCopy() local
2018 byte[] srcDataRow = new byte[srcRowByteCount]; in imageCopy()
2028 if (srcRowByteCount > remainingBytes) { in imageCopy()
2029 srcRowByteCount = remainingBytes; in imageCopy()
2032 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()
2034 Math.min(srcRowByteCount, dstRowByteCount)); in imageCopy()
2045 if (srcRowByteCount > remainingBytes) { in imageCopy()
2046 srcRowByteCount = remainingBytes; in imageCopy()
2053 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()