Lines Matching refs:width
53 unsigned int width = src->w - src->horiz_padding; in convertYV12toYCrCb420SP() local
58 unsigned int chromaPadding = c_width - width/2; in convertYV12toYCrCb420SP()
101 if(j == width) { in convertYV12toYCrCb420SP()
106 if (j+1 == width) { in convertYV12toYCrCb420SP()
107 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; in convertYV12toYCrCb420SP()
109 newChroma[r2*width] = oldChroma[r1*c_width+i+c_size]; in convertYV12toYCrCb420SP()
112 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; in convertYV12toYCrCb420SP()
113 newChroma[r2*width + j + 1] = oldChroma[r1*c_width+i+c_size]; in convertYV12toYCrCb420SP()
117 if (i == width/2 ) { in convertYV12toYCrCb420SP()
128 int width; member
149 int width = info.width; in copy_source_to_destination() local
156 memcpy(dst, src, width); in copy_source_to_destination()
164 width = width/2; in copy_source_to_destination()
196 info.width = rhs->w; in convert_yuv_c2d_to_yuv_android()
198 info.src_stride = ALIGN(info.width, 32); in convert_yuv_c2d_to_yuv_android()
199 info.dst_stride = ALIGN(info.width, 16); in convert_yuv_c2d_to_yuv_android()
241 info.width = rhs->w; in convert_yuv_android_to_yuv_c2d()
243 info.src_stride = ALIGN(hnd->width, 16); in convert_yuv_android_to_yuv_c2d()
244 info.dst_stride = ALIGN(info.width, 32); in convert_yuv_android_to_yuv_c2d()