Lines Matching refs:width
60 void copyNV21toRGB32(unsigned width, unsigned height, in copyNV21toRGB32() argument
67 unsigned strideLum = align<16>(width); in copyNV21toRGB32()
82 for (unsigned c = 0; c < width; c++) { in copyNV21toRGB32()
91 void copyYV12toRGB32(unsigned width, unsigned height, in copyYV12toRGB32() argument
99 unsigned strideLum = align<16>(width); in copyYV12toRGB32()
118 for (unsigned c = 0; c < width; c++) { in copyYV12toRGB32()
125 void copyYUYVtoRGB32(unsigned width, unsigned height, in copyYUYVtoRGB32() argument
131 const int srcRowPadding32 = srcStridePixels/2 - width/2; // 2 bytes per pixel, 4 bytes per word in copyYUYVtoRGB32()
132 const int dstRowPadding32 = dstStridePixels - width; // 4 bytes per pixel, 4 bytes per word in copyYUYVtoRGB32()
135 for (unsigned c = 0; c < width/2; c++) { in copyYUYVtoRGB32()
157 void copyMatchedInterleavedFormats(unsigned width, unsigned height, in copyMatchedInterleavedFormats() argument
163 memcpy(dst, src, width * pixelSize); in copyMatchedInterleavedFormats()