Home
last modified time | relevance | path

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

/aosp_15_r20/cts/tests/camera/utils/src/android/hardware/camera2/cts/
H A DCameraTestUtils.java3223 int srcRowByteCount = srcRowStride; in imageCopy() local
3234 srcRowByteCount = Math.min(srcRowByteCount, srcBuffer.remaining()); in imageCopy()
3237 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()
3249 if (srcRowByteCount > remainingBytes) { in imageCopy()
3250 srcRowByteCount = remainingBytes; in imageCopy()
3257 srcBuffer.get(srcDataRow, /*offset*/0, srcRowByteCount); in imageCopy()