Home
last modified time | relevance | path

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

/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java3162 int dstRowByteCount = dstRowStride; in imageCopy() local
3173 dstRowByteCount = Math.min(dstRowByteCount, dstBuffer.remaining()); in imageCopy()
3176 dstBuffer.put(srcDataRow, /*offset*/0, dstRowByteCount); in imageCopy()
3180 byte[] dstDataRow = new byte[dstRowByteCount]; in imageCopy()
3191 if (dstRowByteCount > remainingBytes) { in imageCopy()
3192 dstRowByteCount = remainingBytes; in imageCopy()
3197 dstBuffer.get(dstDataRow, /*offset*/0, dstRowByteCount); in imageCopy()
3202 dstBuffer.put(dstDataRow, /*offset*/0, dstRowByteCount); in imageCopy()