Lines Matching defs:width
193 static void BAYER_RENAME(rgb24_copy)(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int width)
196 for (i = 0 ; i < width; i+= 2) {
203 static void BAYER_RENAME(rgb24_interpolate)(const uint8_t *src, int src_stride, uint8_t *dst, int dst_stride, int width)
211 for (i = 2 ; i < width - 2; i+= 2) {
217 if (width > 2) {
222 static void BAYER_RENAME(rgb48_copy)(const uint8_t *src, int src_stride, uint8_t *ddst, int dst_stride, int width)
228 for (i = 0 ; i < width; i+= 2) {
235 static void BAYER_RENAME(rgb48_interpolate)(const uint8_t *src, int src_stride, uint8_t *ddst, int dst_stride, int width)
245 for (i = 2 ; i < width - 2; i+= 2) {
251 if (width > 2) {
256 static void BAYER_RENAME(yv12_copy)(const uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int luma_stride, int width, int32_t *rgb2yuv)
261 for (i = 0 ; i < width; i+= 2) {
271 static void BAYER_RENAME(yv12_interpolate)(const uint8_t *src, int src_stride, uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, int luma_stride, int width, int32_t *rgb2yuv)
284 for (i = 2 ; i < width - 2; i+= 2) {
293 if (width > 2) {