Home
last modified time | relevance | path

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

/cts/tests/media/src/android/mediav2/cts/
DCodecTestBase.java1195 int colsToCopy = Math.min(width - x, tileWidth); in fillImage() local
1197 buf.put(mInputData, offset + y * tileWidth, colsToCopy); in fillImage()
1209 int colsToCopy = Math.min(width - x, tileWidth); in fillImage() local
1210 for (int w = 0; w < colsToCopy; w++) { in fillImage()
1239 int colsToCopy = Math.min(width - i, tileWidth); in fillByteBuffer() local
1241 inputBuffer.put(mInputData, frmOffset + j * tileWidth, colsToCopy); in fillByteBuffer()
/cts/tests/media/jni/
DNativeCodecEncoderTest.cpp252 int colsToCopy = std::min(width - i, tileWidth); in fillByteBuffer() local
254 mInputData + (frmOffset + j * tileWidth), colsToCopy); in fillByteBuffer()