Lines Matching refs:top_y
38 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
46 assert(top_y != NULL); \
49 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
65 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
67 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \
84 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
106 static void EmptyUpsampleFunc(const uint8_t* top_y, const uint8_t* bottom_y,
110 (void)top_y;
139 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \
148 FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x + 0); \
149 FUNC(top_y[2 * x + 1], top_u[x], top_v[x], top_dst + 8 * x + 4); \
151 if (len & 1) FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x); \