Home | History | Annotate | Download | only in dsp

Lines Matching refs:top_dst

43                       uint8_t* top_dst, uint8_t* bottom_dst, int len) {        \
50 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
67 top_dst + (2 * x - 1) * XSTEP); \
69 top_dst + (2 * x - 0) * XSTEP); \
86 top_dst + (len - 1) * XSTEP); \
116 uint8_t* top_dst, uint8_t* bottom_dst, int len) { \
119 FUNC(top_y[0], u[0], v[0], top_dst); \
120 FUNC(top_y[1], u[0], v[0], top_dst + XSTEP); \
127 top_dst += 2 * XSTEP; \
131 FUNC(top_y[0], u[0], v[0], top_dst); \
168 uint8_t* top_dst, uint8_t* bot_dst, int len) { \
171 if (top_dst != NULL) { \
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); \