/external/webp/src/dsp/ |
D | upsampling.c | 41 uint8_t* top_dst, uint8_t* bottom_dst, int len) { \ 49 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 66 top_dst + (2 * x - 1) * (XSTEP)); \ 68 top_dst + (2 * x - 0) * (XSTEP)); \ 85 top_dst + (len - 1) * (XSTEP)); \ 109 uint8_t* top_dst, uint8_t* bottom_dst, int len) { 116 (void)top_dst; 142 uint8_t* top_dst, uint8_t* bot_dst, int len) { \ 145 assert(top_dst != NULL); \ 148 FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x + 0); \ [all …]
|
D | upsampling_neon.c | 177 top_dst, bottom_dst, cur_x, len) { \ argument 178 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \ 185 top_dst, bottom_dst, cur_x, len) { \ argument 186 CONVERT1(FUNC, XSTEP, len, top_y, uv, top_dst, cur_x); \ 196 uint8_t *top_dst, uint8_t *bottom_dst, int len) { \ 220 VP8YuvTo ## FMT(top_y[0], u0, v0, top_dst); \ 232 top_dst, bottom_dst, 16 * block + 1, 16); \ 242 top_dst, bottom_dst, last_pos, len - last_pos); \
|
D | upsampling_sse41.c | 110 top_dst, bottom_dst, cur_x) do { \ argument 111 FUNC##32_SSE41((top_y) + (cur_x), r_u, r_v, (top_dst) + (cur_x) * (XSTEP)); \ 122 uint8_t* top_dst, uint8_t* bottom_dst, int len) { \ 135 FUNC(top_y[0], u0_t, v0_t, top_dst); \ 146 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \ 161 memcpy(top_dst + pos * (XSTEP), tmp_top_dst, (len - pos) * (XSTEP)); \
|
D | upsampling_sse2.c | 108 top_dst, bottom_dst, cur_x) do { \ argument 109 FUNC##32_SSE2((top_y) + (cur_x), r_u, r_v, (top_dst) + (cur_x) * (XSTEP)); \ 120 uint8_t* top_dst, uint8_t* bottom_dst, int len) { \ 133 FUNC(top_y[0], u0_t, v0_t, top_dst); \ 144 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \ 159 memcpy(top_dst + pos * (XSTEP), tmp_top_dst, (len - pos) * (XSTEP)); \
|
D | upsampling_mips_dsp_r2.c | 149 uint8_t* top_dst, uint8_t* bottom_dst, int len) { \ 157 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 174 top_dst + (2 * x - 1) * XSTEP); \ 176 top_dst + (2 * x - 0) * XSTEP); \ 193 top_dst + (len - 1) * XSTEP); \
|
D | upsampling_msa.c | 570 uint8_t* top_dst, uint8_t* bot_dst, int len) \ 579 uint8_t *ptop_dst = top_dst + XSTEP; \ 583 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 640 top_dst + (len - 1) * XSTEP); \
|
D | dsp.h | 444 uint8_t* top_dst, uint8_t* bottom_dst, int len);
|
/external/libvpx/libvpx/vpx_scale/mips/dspr2/ |
D | yv12extend_dspr2.c | 27 uint8_t *top_dst, *bot_dst; in extend_plane() local 88 top_dst = src + src_stride * (-extend_top) - extend_left; in extend_plane() 93 memcpy(top_dst, top_src, linesize); in extend_plane() 94 top_dst += src_stride; in extend_plane()
|
/external/libaom/libaom/aom_scale/mips/dspr2/ |
D | yv12extend_dspr2.c | 29 uint8_t *top_dst, *bot_dst; in extend_plane() local 90 top_dst = src + src_stride * (-extend_top) - extend_left; in extend_plane() 95 memcpy(top_dst, top_src, linesize); in extend_plane() 96 top_dst += src_stride; in extend_plane()
|