Lines Matching refs:XSTEP
109 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ argument
111 FUNC##32_SSE41((top_y) + (cur_x), r_u, r_v, (top_dst) + (cur_x) * (XSTEP)); \
114 (bottom_dst) + (cur_x) * (XSTEP)); \
118 #define SSE4_UPSAMPLE_FUNC(FUNC_NAME, FUNC, XSTEP) \ argument
146 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \
159 CONVERT2RGB_32(FUNC, XSTEP, tmp_top, tmp_bottom, tmp_top_dst, \
161 memcpy(top_dst + pos * (XSTEP), tmp_top_dst, (len - pos) * (XSTEP)); \
163 memcpy(bottom_dst + pos * (XSTEP), tmp_bottom_dst, \
164 (len - pos) * (XSTEP)); \
204 #define YUV444_FUNC(FUNC_NAME, CALL, CALL_C, XSTEP) \ argument
212 CALL(y + i, u + i, v + i, dst + i * (XSTEP)); \
215 CALL_C(y + i, u + i, v + i, dst + i * (XSTEP), len - i); \