Home
last modified time | relevance | path

Searched refs:src_ptr1 (Results 1 – 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_extend.c26 const uint8_t *src_ptr1 = src; in copy_and_extend_plane() local
32 memset(dst_ptr1, src_ptr1[0], extend_left); in copy_and_extend_plane()
33 memcpy(dst_ptr1 + extend_left, src_ptr1, w); in copy_and_extend_plane()
35 src_ptr1 += src_pitch; in copy_and_extend_plane()
43 src_ptr1 = dst - extend_left; in copy_and_extend_plane()
50 memcpy(dst_ptr1, src_ptr1, linesize); in copy_and_extend_plane()
71 const uint16_t *src_ptr1 = src; in highbd_copy_and_extend_plane() local
77 vpx_memset16(dst_ptr1, src_ptr1[0], extend_left); in highbd_copy_and_extend_plane()
78 memcpy(dst_ptr1 + extend_left, src_ptr1, w * sizeof(src_ptr1[0])); in highbd_copy_and_extend_plane()
80 src_ptr1 += src_pitch; in highbd_copy_and_extend_plane()
[all …]
/external/libvpx/libvpx/vp8/decoder/
Ddecodeframe.c311 unsigned char *src_ptr1; in yv12_extend_frame_top_c() local
322 src_ptr1 = ybf->y_buffer - Border; in yv12_extend_frame_top_c()
323 dest_ptr1 = src_ptr1 - (Border * plane_stride); in yv12_extend_frame_top_c()
327 memcpy(dest_ptr1, src_ptr1, plane_stride); in yv12_extend_frame_top_c()
337 src_ptr1 = ybf->u_buffer - Border; in yv12_extend_frame_top_c()
338 dest_ptr1 = src_ptr1 - (Border * plane_stride); in yv12_extend_frame_top_c()
342 memcpy(dest_ptr1, src_ptr1, plane_stride); in yv12_extend_frame_top_c()
350 src_ptr1 = ybf->v_buffer - Border; in yv12_extend_frame_top_c()
351 dest_ptr1 = src_ptr1 - (Border * plane_stride); in yv12_extend_frame_top_c()
355 memcpy(dest_ptr1, src_ptr1, plane_stride); in yv12_extend_frame_top_c()
[all …]
/external/libvpx/libvpx/vp8/common/
Dextend.c31 unsigned char *src_ptr1, *src_ptr2; in copy_and_extend_plane() local
36 src_ptr1 = s; in copy_and_extend_plane()
43 memset(dest_ptr1, src_ptr1[0], el); in copy_and_extend_plane()
44 memcpy(dest_ptr1 + el, src_ptr1, w); in copy_and_extend_plane()
46 src_ptr1 += sp; in copy_and_extend_plane()
55 src_ptr1 = d - el; in copy_and_extend_plane()
63 memcpy(dest_ptr1, src_ptr1, linesize); in copy_and_extend_plane()
/external/libvpx/libvpx/vpx_scale/generic/
Dyv12extend.c30 uint8_t *src_ptr1 = src; in extend_plane() local
36 memset(dst_ptr1, src_ptr1[0], extend_left); in extend_plane()
38 src_ptr1 += src_stride; in extend_plane()
47 src_ptr1 = src - extend_left; in extend_plane()
53 memcpy(dst_ptr1, src_ptr1, linesize); in extend_plane()
73 uint16_t *src_ptr1 = src; in extend_plane_high() local
79 vpx_memset16(dst_ptr1, src_ptr1[0], extend_left); in extend_plane_high()
81 src_ptr1 += src_stride; in extend_plane_high()
90 src_ptr1 = src - extend_left; in extend_plane_high()
96 memcpy(dst_ptr1, src_ptr1, linesize * sizeof(uint16_t)); in extend_plane_high()
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_mips.cc851 const uint8* src_ptr1 = src_ptr + src_stride; in InterpolateRow_MIPS_DSPR2() local
894 [src_ptr1] "+r" (src_ptr1), in InterpolateRow_MIPS_DSPR2()
Dscale_neon.cc122 const uint8* src_ptr1 = src_ptr + src_stride; in ScaleRowDown4Box_NEON() local
150 "+r"(src_ptr1), // %3 in ScaleRowDown4Box_NEON()
327 const uint8* src_ptr1 = src_ptr + src_stride * 2; in ScaleRowDown38_3_Box_NEON() local
435 "+r"(src_ptr1) // %4 in ScaleRowDown38_3_Box_NEON()
Dscale_neon64.cc116 const uint8* src_ptr1 = src_ptr + src_stride; in ScaleRowDown4Box_NEON() local
141 "+r"(src_ptr1), // %2 in ScaleRowDown4Box_NEON()
316 const uint8* src_ptr1 = src_ptr + src_stride * 2; in ScaleRowDown38_3_Box_NEON() local
430 "+r"(src_ptr1), // %3 in ScaleRowDown38_3_Box_NEON()
Drow_common.cc2040 const uint8* src_ptr1 = src_ptr + src_stride; in InterpolateRow_C() local
2051 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8; in InterpolateRow_C()
2052 dst_ptr[1] = (src_ptr[1] * y0_fraction + src_ptr1[1] * y1_fraction) >> 8; in InterpolateRow_C()
2054 src_ptr1 += 2; in InterpolateRow_C()
2058 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8; in InterpolateRow_C()
2067 const uint16* src_ptr1 = src_ptr + src_stride; in InterpolateRow_16_C() local
2078 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8; in InterpolateRow_16_C()
2079 dst_ptr[1] = (src_ptr[1] * y0_fraction + src_ptr1[1] * y1_fraction) >> 8; in InterpolateRow_16_C()
2081 src_ptr1 += 2; in InterpolateRow_16_C()
2085 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8; in InterpolateRow_16_C()
Drow_neon64.cc2391 const uint8* src_ptr1 = src_ptr + src_stride; in InterpolateRow_NEON() local
2475 "+r"(src_ptr1), // %2 in InterpolateRow_NEON()
/external/libyuv/files/source/
Dscale_argb.cc765 const uint8* src_ptr1 = src_ptr + src_stride; in ScaleARGBFilterRows_C() local
768 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
769 dst_ptr[1] = (src_ptr[1] * y0_fraction + src_ptr1[1] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
770 dst_ptr[2] = (src_ptr[2] * y0_fraction + src_ptr1[2] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
771 dst_ptr[3] = (src_ptr[3] * y0_fraction + src_ptr1[3] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
772 dst_ptr[4] = (src_ptr[4] * y0_fraction + src_ptr1[4] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
773 dst_ptr[5] = (src_ptr[5] * y0_fraction + src_ptr1[5] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
774 dst_ptr[6] = (src_ptr[6] * y0_fraction + src_ptr1[6] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
775 dst_ptr[7] = (src_ptr[7] * y0_fraction + src_ptr1[7] * y1_fraction) >> 8; in ScaleARGBFilterRows_C()
777 src_ptr1 += 8; in ScaleARGBFilterRows_C()
Drow_common.cc1226 const uint8* src_ptr1 = src_ptr + src_stride; in ARGBInterpolateRow_C() local
1229 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1230 dst_ptr[1] = (src_ptr[1] * y0_fraction + src_ptr1[1] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1231 dst_ptr[2] = (src_ptr[2] * y0_fraction + src_ptr1[2] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1232 dst_ptr[3] = (src_ptr[3] * y0_fraction + src_ptr1[3] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1233 dst_ptr[4] = (src_ptr[4] * y0_fraction + src_ptr1[4] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1234 dst_ptr[5] = (src_ptr[5] * y0_fraction + src_ptr1[5] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1235 dst_ptr[6] = (src_ptr[6] * y0_fraction + src_ptr1[6] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1236 dst_ptr[7] = (src_ptr[7] * y0_fraction + src_ptr1[7] * y1_fraction) >> 8; in ARGBInterpolateRow_C()
1238 src_ptr1 += 8; in ARGBInterpolateRow_C()
Dscale.cc2254 const uint8* src_ptr1 = src_ptr + src_stride; in ScaleFilterRows_C() local
2257 dst_ptr[0] = (src_ptr[0] * y0_fraction + src_ptr1[0] * y1_fraction) >> 8; in ScaleFilterRows_C()
2258 dst_ptr[1] = (src_ptr[1] * y0_fraction + src_ptr1[1] * y1_fraction) >> 8; in ScaleFilterRows_C()
2259 dst_ptr[2] = (src_ptr[2] * y0_fraction + src_ptr1[2] * y1_fraction) >> 8; in ScaleFilterRows_C()
2260 dst_ptr[3] = (src_ptr[3] * y0_fraction + src_ptr1[3] * y1_fraction) >> 8; in ScaleFilterRows_C()
2261 dst_ptr[4] = (src_ptr[4] * y0_fraction + src_ptr1[4] * y1_fraction) >> 8; in ScaleFilterRows_C()
2262 dst_ptr[5] = (src_ptr[5] * y0_fraction + src_ptr1[5] * y1_fraction) >> 8; in ScaleFilterRows_C()
2263 dst_ptr[6] = (src_ptr[6] * y0_fraction + src_ptr1[6] * y1_fraction) >> 8; in ScaleFilterRows_C()
2264 dst_ptr[7] = (src_ptr[7] * y0_fraction + src_ptr1[7] * y1_fraction) >> 8; in ScaleFilterRows_C()
2266 src_ptr1 += 8; in ScaleFilterRows_C()
/external/libhevc/common/arm/
Dihevc_inter_pred_luma_horz_w16out.s108 @r12 - src_ptr1