Home | History | Annotate | Download | only in dsp

Lines Matching refs:top_y

40 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y,           \
48 if (top_y) { \
50 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
63 if (top_y) { \
66 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
68 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \
83 if (top_y) { \
85 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
114 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
119 FUNC(top_y[0], u[0], v[0], top_dst); \
120 FUNC(top_y[1], u[0], v[0], top_dst + XSTEP); \
123 top_y += 2; \
131 FUNC(top_y[0], u[0], v[0], top_dst); \
165 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \
173 FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x + 0); \
174 FUNC(top_y[2 * x + 1], top_u[x], top_v[x], top_dst + 8 * x + 4); \
176 if (len & 1) FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x); \