Lines Matching refs:width
52 unsigned int width = src->w - src->horiz_padding; in convertYV12toYCrCb420SP() local
57 unsigned int chromaPadding = c_width - width/2; in convertYV12toYCrCb420SP()
100 if(j == width) { in convertYV12toYCrCb420SP()
105 if (j+1 == width) { in convertYV12toYCrCb420SP()
106 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; in convertYV12toYCrCb420SP()
108 newChroma[r2*width] = oldChroma[r1*c_width+i+c_size]; in convertYV12toYCrCb420SP()
111 newChroma[r2*width + j] = oldChroma[r1*c_width+i]; in convertYV12toYCrCb420SP()
112 newChroma[r2*width + j + 1] = oldChroma[r1*c_width+i+c_size]; in convertYV12toYCrCb420SP()
116 if (i == width/2 ) { in convertYV12toYCrCb420SP()
127 int width; member
148 int width = info.width; in copy_source_to_destination() local
155 memcpy(dst, src, width); in copy_source_to_destination()
163 width = width/2; in copy_source_to_destination()
195 info.width = rhs->w; in convert_yuv_c2d_to_yuv_android()
197 info.src_stride = ALIGN(info.width, 32); in convert_yuv_c2d_to_yuv_android()
198 info.dst_stride = ALIGN(info.width, 16); in convert_yuv_c2d_to_yuv_android()
240 info.width = rhs->w; in convert_yuv_android_to_yuv_c2d()
242 info.src_stride = ALIGN(hnd->width, 16); in convert_yuv_android_to_yuv_c2d()
243 info.dst_stride = ALIGN(info.width, 32); in convert_yuv_android_to_yuv_c2d()