Home
last modified time | relevance | path

Searched refs:p_src (Results 1 – 14 of 14) sorted by relevance

/third_party/openh264/codec/common/x86/
Dmc_luma.asm1954 %define p_src r0
1977 sub p_src, i_srcstride
1978 sub p_src, i_srcstride
1984 movd xmm0, [p_src]
1985 movd xmm4, [p_src + i_srcstride]
1987 movd xmm1, [p_src + 2 * i_srcstride]
1990 movd xmm4, [p_src + i_srcstride3]
1991 lea p_src, [p_src + 4 * i_srcstride]
1993 movd xmm2, [p_src]
1996 movd xmm4, [p_src + i_srcstride]
[all …]
Dmb_copy.asm509 ; load_instr=%1 store_instr=%2 p_dst=%3 i_dststride=%4 p_src=%5 i_srcstride=%6 cnt=%7 r_tmp=%8,%9 m…
/third_party/ffmpeg/libavfilter/
Dvf_pp7.c209 uint8_t *p_src = p->src + 8 * stride; in filter() local
216 memcpy(p_src + index, src + y * src_stride, width); in filter()
218 p_src[index - x - 1]= p_src[index + x ]; in filter()
219 p_src[index + width + x ]= p_src[index + width - x - 1]; in filter()
223 memcpy(p_src + ( 7 - y ) * stride, p_src + ( y + 8 ) * stride, stride); in filter()
224 memcpy(p_src + (height + 8 + y) * stride, p_src + (height - y + 7) * stride, stride); in filter()
231 uint8_t *src = p_src + index; in filter()
249 uint8_t *src = p_src + index; in filter()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_blit.c771 struct pipe_resource *p_src, in crocus_resource_copy_region() argument
779 struct crocus_resource *src = (void *) p_src; in crocus_resource_copy_region()
789 p_src, src_level, src_box); in crocus_resource_copy_region()
793 p_src, src_level, src_box); in crocus_resource_copy_region()
796 util_format_has_stencil(util_format_description(p_src->format)) && in crocus_resource_copy_region()
799 crocus_get_depth_stencil_resources(devinfo, p_src, &junk, &s_src_res); in crocus_resource_copy_region()
Dcrocus_resource.h354 struct pipe_resource *p_src,
Dcrocus_resource.c1120 struct pipe_resource *p_src, in crocus_replace_buffer_storage() argument
1128 struct crocus_resource *src = (void *) p_src; in crocus_replace_buffer_storage()
/third_party/gstreamer/gstplugins_bad/sys/winscreencap/
Dgstdx9screencapsrc.c460 LPBYTE p_dst, p_src; in gst_dx9screencapsrc_create() local
605 p_src = (LPBYTE) locked_rect.pBits; in gst_dx9screencapsrc_create()
608 memcpy (p_dst, p_src, stride); in gst_dx9screencapsrc_create()
610 p_src += locked_rect.Pitch; in gst_dx9screencapsrc_create()
Ddxgicapture.c588 PBYTE p_src; in dxgicap_copy_buffer() local
591 p_src = (PBYTE) readable_map.pData + in dxgicap_copy_buffer()
608 memcpy (p_dst, p_src, line_size); in dxgicap_copy_buffer()
610 p_src += readable_map.RowPitch; in dxgicap_copy_buffer()
670 PBYTE p_src = in _draw_pointer() local
679 PBYTE p2 = p_src + (x * BYTE_PER_PIXEL); in _draw_pointer()
702 p_src += self->pointer_shape_info.Pitch; in _draw_pointer()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_blit.c760 struct pipe_resource *p_src, in iris_resource_copy_region() argument
768 p_src, src_level, src_box); in iris_resource_copy_region()
771 util_format_has_stencil(util_format_description(p_src->format))) { in iris_resource_copy_region()
773 iris_get_depth_stencil_resources(p_src, &junk, &s_src_res); in iris_resource_copy_region()
Diris_resource.c1876 struct pipe_resource *p_src, in iris_replace_buffer_storage() argument
1884 struct iris_resource *src = (void *) p_src; in iris_replace_buffer_storage()
/third_party/mesa3d/src/gallium/frontends/nine/
Dsurface9.c737 const uint8_t *p_src; in NineSurface9_CopyDefaultToMem() local
752 p_src = pipe->texture_map(pipe, r_src, From->level, in NineSurface9_CopyDefaultToMem()
757 assert (p_src && p_dst); in NineSurface9_CopyDefaultToMem()
762 p_src, in NineSurface9_CopyDefaultToMem()
/third_party/openh264/codec/processing/src/x86/
Ddownsample_bilinear.asm2652 add p_src_row0, p_src
2763 %define p_src [esp + 4 * 4]
2810 mov p_src, r4
2820 %define p_src r4
2950 add p_src_row0, p_src
2985 %undef p_src
3065 %define p_src [esp + 4 * 4]
3113 mov p_src, r4
3126 %define p_src r4
3260 add p_src_row0, p_src
[all …]
/third_party/gstreamer/gstplugins_base/tests/check/elements/
Dplaybin.c512 source_setup (GstElement * playbin, GstElement * source, GstElement ** p_src) in source_setup() argument
515 *p_src = gst_object_ref (source); in source_setup()
/third_party/ffmpeg/libavcodec/
Dh264qpel_template.c78 static av_unused void FUNC(OPNAME ## h264_qpel2_h_lowpass)(uint8_t *p_dst, const uint8_t *p_src, in…
83 const pixel *src = (const pixel*)p_src;\