Searched refs:top_v (Results 1 - 8 of 8) sorted by relevance

/external/webp/src/dsp/
H A 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 */ \
56 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \
107 const uint8_t* top_u, const uint8_t* top_v,
113 (void)top_v;
140 const uint8_t* top_u, const uint8_t* top_v, \
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); \
H A Dupsampling_sse2.c133 const uint8_t* top_u, const uint8_t* top_v, \
145 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
147 const int v0_t = (top_v[0] + v_diag) >> 1; \
158 UPSAMPLE_32PIXELS(top_v + uv_pos, cur_v + uv_pos, r_v); \
165 UPSAMPLE_LAST_BLOCK(top_v + uv_pos, cur_v + uv_pos, left_over, r_v); \
H A Dupsampling_neon.c194 const uint8_t *top_u, const uint8_t *top_v, \
208 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
219 const int v0 = (top_v[0] + v_diag) >> 1; \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
235 top_v += 8; \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
H A Dupsampling_mips_dsp_r2.c147 const uint8_t* top_u, const uint8_t* top_v, \
152 uint32_t tl_uv = LOAD_UV(top_u[0], top_v[0]); /* top-left sample */ \
164 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \
H A Dupsampling_msa.c562 const uint8_t* top_u, const uint8_t* top_v, \
569 const uint32_t tl_uv = ((top_u[0]) | ((top_v[0]) << 16)); \
586 LD_UB2(top_v, 1, tv0, tv1); \
601 top_v += 16; \
610 memcpy(&temp_v[ 0], top_v, 17 * sizeof(uint8_t)); \
625 top_v += size; \
630 const uint32_t t0 = ((top_u[0]) | ((top_v[0]) << 16)); \
H A Ddsp.h403 const uint8_t* top_u, const uint8_t* top_v,
/external/webp/src/dec/
H A Dio_dec.c71 const uint8_t* top_v = p->tmp_v; local
82 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v,
89 top_v = cur_v;
95 top_u, top_v, cur_u, cur_v,
/external/webp/src/enc/
H A Dpicture_csp_enc.c1056 const uint8_t* const top_v = cur_v; local
1059 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v,

Completed in 169 milliseconds