Searched refs:top_u (Results 1 – 9 of 9) sorted by relevance
/external/webp/src/dsp/ |
D | 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 */ \ 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, 112 (void)top_u; 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); \
|
D | upsampling_sse41.c | 120 const uint8_t* top_u, const uint8_t* top_v, \ 131 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \ 133 const int u0_t = (top_u[0] + u_diag) >> 1; \ 144 UPSAMPLE_32PIXELS(top_u + uv_pos, cur_u + uv_pos, r_u); \ 155 UPSAMPLE_LAST_BLOCK(top_u + uv_pos, cur_u + uv_pos, left_over, r_u); \
|
D | upsampling_neon.c | 194 const uint8_t *top_u, const uint8_t *top_v, \ 207 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \ 218 const int u0 = (top_u[0] + u_diag) >> 1; \ 229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \ 233 top_u += 8; \ 239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
|
D | upsampling_sse2.c | 118 const uint8_t* top_u, const uint8_t* top_v, \ 129 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \ 131 const int u0_t = (top_u[0] + u_diag) >> 1; \ 142 UPSAMPLE_32PIXELS(top_u + uv_pos, cur_u + uv_pos, r_u); \ 153 UPSAMPLE_LAST_BLOCK(top_u + uv_pos, cur_u + uv_pos, left_over, r_u); \
|
D | upsampling_mips_dsp_r2.c | 147 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 */ \
|
D | upsampling_msa.c | 568 const uint8_t* top_u, const uint8_t* top_v, \ 575 const uint32_t tl_uv = ((top_u[0]) | ((top_v[0]) << 16)); \ 590 LD_UB2(top_u, 1, tu0, tu1); \ 606 top_u += 16; \ 614 memcpy(&temp_u[ 0], top_u, 17 * sizeof(uint8_t)); \ 630 top_u += size; \ 636 const uint32_t t0 = ((top_u[0]) | ((top_v[0]) << 16)); \
|
D | dsp.h | 442 const uint8_t* top_u, const uint8_t* top_v,
|
/external/webp/src/dec/ |
D | io_dec.c | 70 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/webp/src/enc/ |
D | picture_csp_enc.c | 1063 const uint8_t* const top_u = cur_u; in WebPPictureYUVAToARGB() local 1067 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v, in WebPPictureYUVAToARGB()
|