/external/chromium_org/third_party/libwebp/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_neon.c | 182 const uint8_t *top_u, const uint8_t *top_v, \ 196 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \ 207 const int v0 = (top_v[0] + v_diag) >> 1; \ 218 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \ 223 top_v += 8; \ 228 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
|
upsampling_sse2.c | 133 const uint8_t* top_u, const uint8_t* top_v, \ 145 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \ 147 const int v0_t = (top_v[0] + v_diag) >> 1; \ 158 UPSAMPLE_32PIXELS(top_v + uv_pos, cur_v + uv_pos, r_v); \ 165 UPSAMPLE_LAST_BLOCK(top_v + uv_pos, cur_v + uv_pos, left_over, r_v); \
|
dsp.h | 193 const uint8_t* top_u, const uint8_t* top_v,
|
/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_neon.c | 182 const uint8_t *top_u, const uint8_t *top_v, \ 196 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \ 207 const int v0 = (top_v[0] + v_diag) >> 1; \ 218 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \ 223 top_v += 8; \ 228 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
|
upsampling_sse2.c | 133 const uint8_t* top_u, const uint8_t* top_v, \ 145 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; \ 147 const int v0_t = (top_v[0] + v_diag) >> 1; \ 158 UPSAMPLE_32PIXELS(top_v + uv_pos, cur_v + uv_pos, r_v); \ 165 UPSAMPLE_LAST_BLOCK(top_v + uv_pos, cur_v + uv_pos, left_over, r_v); \
|
dsp.h | 193 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) 173 const int v_diag = ((top_v[0] + cur_v[0]) >> 1) + 1; 211 uint8x8_t a = vld1_u8(top_v); 212 uint8x8_t b = vld1_u8(top_v + 1);
|
/external/chromium_org/third_party/libwebp/enc/ |
picture_csp.c | 303 const uint8_t* const top_v = cur_v; local 306 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v,
|
/external/webp/src/enc/ |
picture_csp.c | 303 const uint8_t* const top_v = cur_v; local 306 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v,
|
/external/chromium_org/third_party/libwebp/dec/ |
io.c | 97 const uint8_t* top_v = p->tmp_v; local 108 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, 115 top_v = cur_v; 121 top_u, top_v, cur_u, cur_v,
|
/external/webp/src/dec/ |
io.c | 97 const uint8_t* top_v = p->tmp_v; local 108 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, 115 top_v = cur_v; 121 top_u, top_v, cur_u, cur_v,
|