Lines Matching refs:dst
62 uint32_t* dst, unsigned dstStridePixels) in copyNV21toRGB32() argument
80 uint32_t* rowDest = dst + r*dstStridePixels; in copyNV21toRGB32()
93 uint32_t* dst, unsigned dstStridePixels) in copyYV12toRGB32() argument
116 uint32_t* rowDest = dst + r*dstStridePixels; in copyYV12toRGB32()
127 uint32_t* dst, unsigned dstStridePixels) in copyYUYVtoRGB32() argument
145 *(dst+0) = yuvToRgbx(Y1, U, V); in copyYUYVtoRGB32()
146 *(dst+1) = yuvToRgbx(Y2, U, V); in copyYUYVtoRGB32()
147 dst += 2; in copyYUYVtoRGB32()
152 dst += dstRowPadding32; in copyYUYVtoRGB32()
159 void* dst, unsigned dstStridePixels, in copyMatchedInterleavedFormats() argument
163 memcpy(dst, src, width * pixelSize); in copyMatchedInterleavedFormats()
167 dst = (uint8_t*)dst + dstStridePixels * pixelSize; in copyMatchedInterleavedFormats()