Lines Matching refs:width
103 static void nv21_to_yuv(uint8_t* dst, uint8_t* y, uint8_t* uv, int width) {
108 while ((width--) > 0) {
117 if(!(width % 2)) uv+=2;
121 static void uyvy_to_yuv(uint8_t* dst, uint32_t* src, int width) {
126 if (width % 2) {
130 // currently, neon routine only supports multiple of 16 width
131 if (width % 16) {
132 while ((width-=2) >= 0) {
147 int n = width;
170 : [src_stride] "r" (width)
410 "width: %d \n\t"