Searched refs:dstRowByteCount (Results 1 – 1 of 1) sorted by relevance
3162 int dstRowByteCount = dstRowStride; in imageCopy() local3173 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()