Lines Matching refs:width
54 unsigned int width = src->w - src->horiz_padding; in convertYV12toYCrCb420SP() local
59 unsigned int chromaPadding = c_width - width/2; in convertYV12toYCrCb420SP()
102 if(j == width) { in convertYV12toYCrCb420SP()
107 if (j+1 == width) { in convertYV12toYCrCb420SP()
108 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; in convertYV12toYCrCb420SP()
110 newChroma[r2*width] = oldChroma[r1*c_width+i+c_size]; in convertYV12toYCrCb420SP()
113 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; in convertYV12toYCrCb420SP()
114 newChroma[r2*width + j + 1] = oldChroma[r1*c_width+i+c_size]; in convertYV12toYCrCb420SP()
118 if (i == width/2 ) { in convertYV12toYCrCb420SP()
129 int width; member
150 int width = info.width; in copy_source_to_destination() local
157 memcpy(dst, src, width); in copy_source_to_destination()
165 width = width/2; in copy_source_to_destination()
197 info.width = rhs->w; in convert_yuv_c2d_to_yuv_android()
199 info.src_stride = ALIGN(info.width, 32); in convert_yuv_c2d_to_yuv_android()
200 info.dst_stride = ALIGN(info.width, 16); in convert_yuv_c2d_to_yuv_android()
242 info.width = rhs->w; in convert_yuv_android_to_yuv_c2d()
244 info.src_stride = ALIGN(hnd->width, 16); in convert_yuv_android_to_yuv_c2d()
245 info.dst_stride = ALIGN(info.width, 32); in convert_yuv_android_to_yuv_c2d()