Lines Matching refs:XSTEP
154 #define CONVERT8(FMT, XSTEP, N, src_y, src_uv, out, cur_x) do { \ argument
157 const int off = ((cur_x) + i) * XSTEP; \
184 #define CONVERT1(FUNC, XSTEP, N, src_y, src_uv, rgb, cur_x) { \ argument
187 const int off = ((cur_x) + i) * XSTEP; \
195 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \ argument
197 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \
199 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
203 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \ argument
205 CONVERT1(FUNC, XSTEP, len, top_y, uv, top_dst, cur_x); \
207 CONVERT1(FUNC, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
211 #define NEON_UPSAMPLE_FUNC(FUNC_NAME, FMT, XSTEP) \ argument
250 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
260 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \