Home
last modified time | relevance | path

Searched refs:top_u (Results 1 – 14 of 14) sorted by relevance

/external/webp/src/dsp/
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 */ \
114 const uint8_t* top_u, const uint8_t* top_v, \
122 FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x + 0); \
123 FUNC(top_y[2 * x + 1], top_u[x], top_v[x], top_dst + 8 * x + 4); \
125 if (len & 1) FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x); \
Dupsampling_sse2.c133 const uint8_t* top_u, const uint8_t* top_v, \
144 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
146 const int u0_t = (top_u[0] + u_diag) >> 1; \
157 UPSAMPLE_32PIXELS(top_u + uv_pos, cur_u + uv_pos, r_u); \
164 UPSAMPLE_LAST_BLOCK(top_u + uv_pos, cur_u + uv_pos, left_over, r_u); \
Dupsampling_neon.c213 const uint8_t *top_u, const uint8_t *top_v, \
226 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
237 const int u0 = (top_u[0] + u_diag) >> 1; \
248 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
252 top_u += 8; \
258 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
Dupsampling_mips_dsp_r2.c148 const uint8_t* top_u, const uint8_t* top_v, \
153 uint32_t tl_uv = LOAD_UV(top_u[0], top_v[0]); /* top-left sample */ \
165 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \
Ddsp.h280 const uint8_t* top_u, const uint8_t* top_v,
/external/opencv3/3rdparty/libwebp/dsp/
Dupsampling_sse2.c130 const uint8_t* top_u, const uint8_t* top_v, \
143 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
149 const int u0 = (top_u[0] + u_diag) >> 1; \
160 UPSAMPLE_32PIXELS(top_u, cur_u, r_uv + 0 * 32); \
164 top_u += 16; \
170 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv + 0 * 32); \
Dupsampling.c41 const uint8_t* top_u, const uint8_t* top_v, \
46 uint32_t tl_uv = LOAD_UV(top_u[0], top_v[0]); /* top-left sample */ \
57 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \
166 const uint8_t* top_u, const uint8_t* top_v, \
173 FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x + 0); \
174 FUNC(top_y[2 * x + 1], top_u[x], top_v[x], top_dst + 8 * x + 4); \
176 if (len & 1) FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x); \
Dupsampling_neon.c212 const uint8_t *top_u, const uint8_t *top_v, \
225 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
235 const int u0 = (top_u[0] + u_diag) >> 1; \
246 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
250 top_u += 8; \
256 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
Ddsp.h151 const uint8_t* top_u, const uint8_t* top_v,
/external/webp/src/dec/
Dio.c70 const uint8_t* top_u = p->tmp_u; in EmitFancyRGB() local
82 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
88 top_u = cur_u; in EmitFancyRGB()
95 top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
/external/opencv3/3rdparty/libwebp/dec/
Dio.c113 const uint8_t* top_u = p->tmp_u; in EmitFancyRGB() local
125 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
131 top_u = cur_u; in EmitFancyRGB()
138 top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
Dframe.c586 uint8_t* const top_u = dec->u_t_ + dec->mb_x_ * 8; in VP8ReconstructBlock() local
593 memcpy(u_dst - BPS, top_u, 8); in VP8ReconstructBlock()
668 memcpy(top_u, u_dst + 7 * BPS, 8); in VP8ReconstructBlock()
/external/webp/src/enc/
Dpicture_csp.c1054 const uint8_t* const top_u = cur_u; in WebPPictureYUVAToARGB() local
1058 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v, in WebPPictureYUVAToARGB()
/external/opencv3/3rdparty/libwebp/enc/
Dpicture.c794 const uint8_t* const top_u = cur_u; in WebPPictureYUVAToARGB() local
798 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v, in WebPPictureYUVAToARGB()