Home
last modified time | relevance | path

Searched refs:cur_v (Results 1 – 9 of 9) sorted by relevance

/external/webp/src/dsp/
Dupsampling_sse41.c121 const uint8_t* cur_u, const uint8_t* cur_v, \
132 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
138 const int v0_b = (cur_v[0] + v_diag) >> 1; \
145 UPSAMPLE_32PIXELS(top_v + uv_pos, cur_v + uv_pos, r_v); \
156 UPSAMPLE_LAST_BLOCK(top_v + uv_pos, cur_v + uv_pos, left_over, r_v); \
Dupsampling_neon.c195 const uint8_t* cur_u, const uint8_t* cur_v, \
208 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
224 const int v0 = (cur_v[0] + v_diag) >> 1; \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
236 cur_v += 8; \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
Dupsampling.c40 const uint8_t* cur_u, const uint8_t* cur_v, \
45 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \
57 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \
108 const uint8_t* cur_u, const uint8_t* cur_v,
115 (void)cur_v;
Dupsampling_sse2.c119 const uint8_t* cur_u, const uint8_t* cur_v, \
130 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
136 const int v0_b = (cur_v[0] + v_diag) >> 1; \
143 UPSAMPLE_32PIXELS(top_v + uv_pos, cur_v + uv_pos, r_v); \
154 UPSAMPLE_LAST_BLOCK(top_v + uv_pos, cur_v + uv_pos, left_over, r_v); \
Dupsampling_mips_dsp_r2.c148 const uint8_t* cur_u, const uint8_t* cur_v, \
153 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \
165 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \
Dupsampling_msa.c569 const uint8_t* cur_u, const uint8_t* cur_v, \
576 const uint32_t l_uv = ((cur_u[0]) | ((cur_v[0]) << 16)); \
593 LD_UB2(cur_v, 1, cv0, cv1); \
609 cur_v += 16; \
617 memcpy(&temp_v[32], cur_v, 17 * sizeof(uint8_t)); \
633 cur_v += size; \
637 const uint32_t c0 = ((cur_u[0]) | ((cur_v[0]) << 16)); \
Ddsp.h449 const uint8_t* cur_u, const uint8_t* cur_v,
/external/webp/src/dec/
Dio_dec.c64 const uint8_t* cur_v = io->v; in EmitFancyRGB() local
74 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, mb_w); in EmitFancyRGB()
77 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
84 top_v = cur_v; in EmitFancyRGB()
86 cur_v += io->uv_stride; in EmitFancyRGB()
90 top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
99 memcpy(p->tmp_v, cur_v, uv_w * sizeof(*p->tmp_v)); in EmitFancyRGB()
106 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, in EmitFancyRGB()
/external/webp/src/enc/
Dpicture_csp_enc.c1057 const uint8_t* cur_u = picture->u, *cur_v = picture->v, *cur_y = picture->y; in WebPPictureYUVAToARGB() local
1062 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width); in WebPPictureYUVAToARGB()
1068 const uint8_t* const top_v = cur_v; in WebPPictureYUVAToARGB()
1070 cur_v += picture->uv_stride; in WebPPictureYUVAToARGB()
1071 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v, in WebPPictureYUVAToARGB()
1078 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width); in WebPPictureYUVAToARGB()