Lines Matching refs:XSTEP
39 #define UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
67 top_dst + (2 * x - 1) * XSTEP); \
69 top_dst + (2 * x - 0) * XSTEP); \
75 bottom_dst + (2 * x - 1) * XSTEP); \
77 bottom_dst + (2 * x + 0) * XSTEP); \
86 top_dst + (len - 1) * XSTEP); \
91 bottom_dst + (len - 1) * XSTEP); \
113 #define SAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
120 FUNC(top_y[1], u[0], v[0], top_dst + XSTEP); \
122 FUNC(bottom_y[1], u[0], v[0], bottom_dst + XSTEP); \
127 top_dst += 2 * XSTEP; \
128 bottom_dst += 2 * XSTEP; \
206 #define YUV444_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
210 for (i = 0; i < len; ++i) FUNC(y[i], u[i], v[i], &dst[i * XSTEP]); \