Lines Matching refs:cur_x
96 #define CONVERT8(FMT, XSTEP, N, src_y, src_uv, out, cur_x) { \ argument
99 int off = ((cur_x) + i) * XSTEP; \
100 uint8x8_t y = vld1_u8(src_y + (cur_x) + i); \
179 #define CONVERT1(FMT, XSTEP, N, src_y, src_uv, rgb, cur_x) { \ argument
182 int off = ((cur_x) + i) * XSTEP; \
183 int y = src_y[(cur_x) + i]; \
191 top_dst, bottom_dst, cur_x, len) { \ argument
193 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x) \
196 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x) \
201 top_dst, bottom_dst, cur_x, len) { \ argument
203 CONVERT1(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \
206 CONVERT1(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \