Home
last modified time | relevance | path

Searched refs:top_v (Results 1 – 7 of 7) sorted by relevance

/external/webp/src/dsp/
Dupsampling_sse2.c128 const uint8_t* top_u, const uint8_t* top_v, \
142 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
148 const int v0 = (top_v[0] + v_diag) >> 1; \
159 UPSAMPLE_32PIXELS(top_v, cur_v, r_uv + 1 * 32); \
164 top_v += 16; \
169 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 1 * 32); \
Dupsampling.c39 const uint8_t* top_u, const uint8_t* top_v, \
44 uint32_t tl_uv = LOAD_UV(top_u[0], top_v[0]); /* top-left sample */ \
55 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \
164 const uint8_t* top_u, const uint8_t* top_v, \
171 FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x + 0); \
172 FUNC(top_y[2 * x + 1], top_u[x], top_v[x], top_dst + 8 * x + 4); \
174 if (len & 1) FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x); \
Dupsampling_neon.c210 const uint8_t *top_u, const uint8_t *top_v, \
224 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
234 const int v0 = (top_v[0] + v_diag) >> 1; \
245 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
250 top_v += 8; \
255 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
Ddsp.h149 const uint8_t* top_u, const uint8_t* top_v,
/external/webp/src/dec/
Dio.c112 const uint8_t* top_v = p->tmp_v; in EmitFancyRGB() local
123 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
130 top_v = cur_v; in EmitFancyRGB()
136 top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
Dframe.c585 uint8_t* const top_v = dec->v_t_ + dec->mb_x_ * 8; in VP8ReconstructBlock() local
592 memcpy(v_dst - BPS, top_v, 8); in VP8ReconstructBlock()
667 memcpy(top_v, v_dst + 7 * BPS, 8); in VP8ReconstructBlock()
/external/webp/src/enc/
Dpicture.c794 const uint8_t* const top_v = cur_v; in WebPPictureYUVAToARGB() local
797 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v, in WebPPictureYUVAToARGB()