Home
last modified time | relevance | path

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

/cts/tests/media/common/src/android/mediav2/common/cts/
DCodecEncoderTestBase.java391 int colsToCopy = Math.min(width - x, tileWidth); in fillImage() local
394 colsToCopy * bytesPerSample); in fillImage()
406 int colsToCopy = Math.min(width - x, tileWidth); in fillImage() local
407 for (int w = 0; w < colsToCopy; w++) { in fillImage()
439 int colsToCopy = Math.min(width - i, tileWidth); in fillByteBuffer() local
445 colsToCopy * mActiveRawRes.mBytesPerSample); in fillByteBuffer()
DCompareStreams.java169 int colsToCopy = Math.min(width - i, tileWidth); in fillByteArray() local
174 colsToCopy * bytesPerSample); in fillByteArray()
/cts/tests/mediapc/src/android/mediapc/cts/
DCodecTestBase.java809 int colsToCopy = Math.min(width - x, tileWidth); in fillImage() local
811 buf.put(mInputData, offset + y * tileWidth, colsToCopy); in fillImage()
823 int colsToCopy = Math.min(width - x, tileWidth); in fillImage() local
824 for (int w = 0; w < colsToCopy; w++) { in fillImage()
853 int colsToCopy = Math.min(width - i, tileWidth); in fillByteBuffer() local
855 inputBuffer.put(mInputData, frmOffset + j * tileWidth, colsToCopy); in fillByteBuffer()
/cts/tests/media/jni/
DNativeCodecEncoderTest.cpp200 int colsToCopy = std::min(width - i, tileWidth); in fillByteBuffer() local
202 mInputData + (frmOffset + j * tileWidth), colsToCopy); in fillByteBuffer()