HomeSort by relevance Sort by last modified time
    Searched refs:top_u (Results 1 - 7 of 7) sorted by null

  /external/webp/src/dsp/
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 */ \
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); \
upsampling_sse2.c 133 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); \
upsampling_neon.c 182 const uint8_t *top_u, const uint8_t *top_v, \
195 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \
206 const int u0 = (top_u[0] + u_diag) >> 1; \
217 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
221 top_u += 8; \
227 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
dsp.h 209 const uint8_t* top_u, const uint8_t* top_v,
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 163 void UpsampleRgbaLinePairNEON(const uint8_t *top_y, const uint8_t *bottom_y, const uint8_t *top_u, const uint8_t *top_v, const uint8_t *cur_u, const uint8_t *cur_v, uint8_t *top_dst, uint8_t *bottom_dst, int len)
172 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1;
180 uint8x8_t a = vld1_u8(top_u);
181 uint8x8_t b = vld1_u8(top_u + 1);
  /external/webp/src/dec/
io.c 96 const uint8_t* top_u = p->tmp_u; local
108 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v,
114 top_u = cur_u;
121 top_u, top_v, cur_u, cur_v,
  /external/webp/src/enc/
picture_csp.c 1021 const uint8_t* const top_u = cur_u; local
    [all...]

Completed in 297 milliseconds