Home
last modified time | relevance | path

Searched refs:top_v (Results 1 – 10 of 10) sorted by relevance

/external/libgav1/libgav1/src/dsp/arm/
Dintrapred_smooth_neon.cc80 uint8x8_t top_v; in Smooth4Or8xN_NEON() local
82 top_v = Load4(top); in Smooth4Or8xN_NEON()
84 top_v = vld1_u8(top); in Smooth4Or8xN_NEON()
100 const uint16x8_t weighted_top = vmull_u8(weights_y_v, top_v); in Smooth4Or8xN_NEON()
161 uint8x16_t top_v[4]; in Smooth16PlusxN_NEON() local
162 top_v[0] = vld1q_u8(top); in Smooth16PlusxN_NEON()
164 top_v[1] = vld1q_u8(top + 16); in Smooth16PlusxN_NEON()
166 top_v[2] = vld1q_u8(top + 32); in Smooth16PlusxN_NEON()
167 top_v[3] = vld1q_u8(top + 48); in Smooth16PlusxN_NEON()
207 vst1q_u8(dst, CalculateWeightsAndPred(top_v[0], left_v, top_right_v, in Smooth16PlusxN_NEON()
[all …]
/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 */ \
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); \
Dupsampling_sse41.c120 const uint8_t* top_u, const uint8_t* top_v, \
132 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
134 const int v0_t = (top_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.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); \
Dupsampling_sse2.c118 const uint8_t* top_u, const uint8_t* top_v, \
130 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \
132 const int v0_t = (top_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.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 */ \
Dupsampling_msa.c568 const uint8_t* top_u, const uint8_t* top_v, \
575 const uint32_t tl_uv = ((top_u[0]) | ((top_v[0]) << 16)); \
592 LD_UB2(top_v, 1, tv0, tv1); \
607 top_v += 16; \
616 memcpy(&temp_v[ 0], top_v, 17 * sizeof(uint8_t)); \
631 top_v += size; \
636 const uint32_t t0 = ((top_u[0]) | ((top_v[0]) << 16)); \
Ddsp.h448 const uint8_t* top_u, const uint8_t* top_v,
/external/webp/src/dec/
Dio_dec.c66 const uint8_t* top_v = p->tmp_v; in EmitFancyRGB() local
77 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
84 top_v = cur_v; in EmitFancyRGB()
90 top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
/external/webp/src/enc/
Dpicture_csp_enc.c1068 const uint8_t* const top_v = cur_v; in WebPPictureYUVAToARGB() local
1071 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v, in WebPPictureYUVAToARGB()