HomeSort by relevance Sort by last modified time
    Searched refs:top_v (Results 1 - 7 of 7) sorted by null

  /external/webp/src/dsp/
upsampling_sse2.c 128 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); \
upsampling.c 39 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); \
upsampling_neon.c 210 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); \
dsp.h 149 const uint8_t* top_u, const uint8_t* top_v,
  /external/webp/src/dec/
io.c 112 const uint8_t* top_v = p->tmp_v; local
123 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v,
130 top_v = cur_v;
136 top_u, top_v, cur_u, cur_v,
frame.c 585 uint8_t* const top_v = dec->v_t_ + dec->mb_x_ * 8; local
592 memcpy(v_dst - BPS, top_v, 8);
667 memcpy(top_v, v_dst + 7 * BPS, 8);
  /external/webp/src/enc/
picture.c 794 const uint8_t* const top_v = cur_v; local
797 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v,
    [all...]

Completed in 94 milliseconds