Home
last modified time | relevance | path

Searched refs:dst_y (Results 1 – 25 of 34) sorted by relevance

12

/external/libyuv/files/include/libyuv/
Dconvert.h33 uint8* dst_y, int dst_stride_y,
43 uint8* dst_y, int dst_stride_y,
53 uint8* dst_y, int dst_stride_y,
63 uint8* dst_y, int dst_stride_y,
71 uint8* dst_y, int dst_stride_y,
80 uint8* dst_y, int dst_stride_y,
88 uint8* dst_y, int dst_stride_y,
97 uint8* dst_y, int dst_stride_y,
105 uint8* dst_y, int dst_stride_y,
113 uint8* dst_y, int dst_stride_y,
[all …]
Drow.h218 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
219 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
220 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
221 void RGBAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
222 void ARGBToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
223 void BGRAToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
224 void ABGRToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
225 void RGBAToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
274 void ARGBToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
275 void BGRAToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
[all …]
Dplanar_functions.h26 void SetPlane(uint8* dst_y, int dst_stride_y,
36 uint8* dst_y, int dst_stride_y,
42 uint8* dst_y, int dst_stride_y,
49 uint8* dst_y, int dst_stride_y,
57 uint8* dst_y, int dst_stride_y,
67 uint8* dst_y, int dst_stride_y,
135 uint8* dst_y, int dst_stride_y,
141 uint8* dst_y, int dst_stride_y,
173 int I420Rect(uint8* dst_y, int dst_stride_y,
Dformat_conversion.h24 uint8* dst_y, int dst_stride_y,
31 uint8* dst_y, int dst_stride_y,
38 uint8* dst_y, int dst_stride_y,
45 uint8* dst_y, int dst_stride_y,
56 uint8* dst_y, int dst_stride_y,
Dconvert_from.h30 uint8* dst_y, int dst_stride_y,
39 uint8* dst_y, int dst_stride_y,
48 uint8* dst_y, int dst_stride_y,
56 uint8* dst_y, int dst_stride_y,
Dscale.h51 uint8* dst_y, int dst_stride_y,
62 uint8* dst_y, uint8* dst_u, uint8* dst_v,
Drotate.h39 uint8* dst_y, int dst_stride_y,
48 uint8* dst_y, int dst_stride_y,
/external/libyuv/files/source/
Dconvert.cc34 uint8* dst_y, int dst_stride_y, in I420Copy() argument
39 !dst_y || !dst_u || !dst_v || in I420Copy()
57 if (dst_y) { in I420Copy()
58 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
129 uint8* dst_y, int dst_stride_y, in I422ToI420() argument
134 !dst_y || !dst_u || !dst_v || in I422ToI420()
163 if (dst_y) { in I422ToI420()
164 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422ToI420()
209 uint8* dst_y, int dst_stride_y, in I444ToI420() argument
214 !dst_y || !dst_u || !dst_v || in I444ToI420()
[all …]
Dplanar_functions.cc29 uint8* dst_y, int dst_stride_y, in CopyPlane() argument
45 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in CopyPlane()
52 CopyRow(src_y, dst_y, width); in CopyPlane()
54 dst_y += dst_stride_y; in CopyPlane()
63 uint8* dst_y, int dst_stride_y, in I420ToI400() argument
65 if (!src_y || !dst_y || width <= 0 || height == 0) { in I420ToI400()
74 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI400()
80 uint8* dst_y, int dst_stride_y, in MirrorPlane() argument
102 MirrorRow(src_y, dst_y, width); in MirrorPlane()
104 dst_y += dst_stride_y; in MirrorPlane()
[all …]
Drow_posix.cc669 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_SSSE3() argument
695 "+r"(dst_y), // %1 in ARGBToYRow_SSSE3()
706 void ARGBToYRow_Unaligned_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_Unaligned_SSSE3() argument
732 "+r"(dst_y), // %1 in ARGBToYRow_Unaligned_SSSE3()
874 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_SSSE3() argument
900 "+r"(dst_y), // %1 in BGRAToYRow_SSSE3()
911 void BGRAToYRow_Unaligned_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_Unaligned_SSSE3() argument
937 "+r"(dst_y), // %1 in BGRAToYRow_Unaligned_SSSE3()
1074 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix) { in ABGRToYRow_SSSE3() argument
1100 "+r"(dst_y), // %1 in ABGRToYRow_SSSE3()
[all …]
Dformat_conversion.cc351 uint8* dst_y, int dst_stride_y, in BayerToI420() argument
363 dst_y = dst_y + (height - 1) * dst_stride_y; in BayerToI420()
374 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in BayerToI420()
383 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in BayerToI420()
419 ARGBToYRow(row, dst_y, width); in BayerToI420()
420 ARGBToYRow(row + kMaxStride, dst_y + dst_stride_y, width); in BayerToI420()
422 dst_y += dst_stride_y * 2; in BayerToI420()
429 ARGBToYRow(row, dst_y, width); in BayerToI420()
500 uint8* dst_y, int dst_stride_y, \
505 dst_y, dst_stride_y, \
Dconvert_from.cc31 uint8* dst_y, int dst_stride_y, in I420ToI422() argument
36 !dst_y || !dst_u || !dst_v || in I420ToI422()
43 dst_y = dst_y + (height - 1) * dst_stride_y; in I420ToI422()
72 if (dst_y) { in I420ToI422()
73 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI422()
111 uint8* dst_y, int dst_stride_y, in I420ToI444() argument
116 !dst_y || !dst_u || !dst_v || in I420ToI444()
123 dst_y = dst_y + (height - 1) * dst_stride_y; in I420ToI444()
132 if (dst_y) { in I420ToI444()
133 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420ToI444()
[all …]
Drow_neon.cc695 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument
704 "+r"(dst_y), // %1 in YUY2ToYRow_NEON()
713 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { in UYVYToYRow_NEON() argument
722 "+r"(dst_y), // %1 in UYVYToYRow_NEON()
Drotate.cc1043 uint8* dst_y, int dst_stride_y, in I420Rotate() argument
1049 !dst_y || !dst_u || !dst_v) { in I420Rotate()
1073 dst_y, dst_stride_y, in I420Rotate()
1079 dst_y, dst_stride_y, in I420Rotate()
1090 dst_y, dst_stride_y, in I420Rotate()
1101 dst_y, dst_stride_y, in I420Rotate()
1119 uint8* dst_y, int dst_stride_y, in NV12ToI420Rotate() argument
1125 !dst_y || !dst_u || !dst_v) { in NV12ToI420Rotate()
1146 dst_y, dst_stride_y, in NV12ToI420Rotate()
1152 dst_y, dst_stride_y, in NV12ToI420Rotate()
[all …]
Drow_common.cc269 void NAME ## ToYRow_C(const uint8* src_argb0, uint8* dst_y, int width) { \
271 dst_y[0] = RGBToY(src_argb0[R], src_argb0[G], src_argb0[B]); \
273 dst_y += 1; \
773 void YUY2ToYRow_C(const uint8* src_yuy2, uint8* dst_y, int width) { in YUY2ToYRow_C() argument
776 dst_y[x] = src_yuy2[0]; in YUY2ToYRow_C()
777 dst_y[x + 1] = src_yuy2[2]; in YUY2ToYRow_C()
781 dst_y[width - 1] = src_yuy2[0]; in YUY2ToYRow_C()
812 void UYVYToYRow_C(const uint8* src_uyvy, uint8* dst_y, int width) { in UYVYToYRow_C() argument
815 dst_y[x] = src_uyvy[1]; in UYVYToYRow_C()
816 dst_y[x + 1] = src_uyvy[3]; in UYVYToYRow_C()
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Drow.h81 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
82 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
83 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
95 void RGB24ToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
96 void RAWToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
110 void ARGBToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
111 void BGRAToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
112 void ABGRToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
113 void RGB24ToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
114 void RAWToYRow_C(const uint8* src_argb, uint8* dst_y, int pix);
/external/libvpx/libvpx/vp8/encoder/arm/neon/
Dpicklpf_arm.c22 unsigned char *src_y, *dst_y; in vp8_yv12_copy_partial_frame_neon() local
43 dst_y = dst_ybc->y_buffer + yoffset; in vp8_yv12_copy_partial_frame_neon()
45 vp8_memcpy_partial_neon(dst_y, src_y, ystride * linestocopy); in vp8_yv12_copy_partial_frame_neon()
/external/libvpx/libvpx/vp8/common/
Dreconinter.h17 unsigned char *dst_y,
25 unsigned char *dst_y,
Dreconinter.c324 unsigned char *dst_y, in vp8_build_inter16x16_predictors_mby() argument
339 dst_y, dst_ystride); in vp8_build_inter16x16_predictors_mby()
343 vp8_copy_mem16x16(ptr, pre_stride, dst_y, in vp8_build_inter16x16_predictors_mby()
385 unsigned char *dst_y, in vp8_build_inter16x16_predictors_mb() argument
411 …predict16x16(ptr, pre_stride, _16x16mv.as_mv.col & 7, _16x16mv.as_mv.row & 7, dst_y, dst_ystride); in vp8_build_inter16x16_predictors_mb()
415 vp8_copy_mem16x16(ptr, pre_stride, dst_y, dst_ystride); in vp8_build_inter16x16_predictors_mb()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dscale.h42 uint8* dst_y, int dst_stride_y,
52 uint8* dst_y, uint8* dst_u, uint8* dst_v,
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
Dbilin_scaler.c199 unsigned int dst_y=0, dst_vu=0; in scale_srcw16_dstw16() local
229 dst_y = dst_vu<<1; in scale_srcw16_dstw16()
233 next_src_y_upper = ((float)dst_y+2)*y_scale; in scale_srcw16_dstw16()
234 next_src_y_lower = ((float)dst_y+3)*y_scale; in scale_srcw16_dstw16()
505 unsigned int dst_y=0, dst_vu=0; in scale_srcw16_dstw32() local
534 dst_y = dst_vu<<1; in scale_srcw16_dstw32()
538 next_src_y_upper = ((float)dst_y+2)*y_scale; in scale_srcw16_dstw32()
539 next_src_y_lower = ((float)dst_y+3)*y_scale; in scale_srcw16_dstw32()
803 unsigned int dst_y=0, dst_vu=0; in scale_srcw32_dstw16() local
828 dst_y = dst_vu<<1; in scale_srcw32_dstw16()
[all …]
/external/qemu/
Dconsole.h177 int dst_x, int dst_y, int w, int h);
342 int dst_x, int dst_y, int w, int h) { in dpy_copy() argument
346 dcl->dpy_copy(s, src_x, src_y, dst_x, dst_y, w, h); in dpy_copy()
348 dcl->dpy_update(s, dst_x, dst_y, w, h); in dpy_copy()
453 int dst_x, int dst_y, int w, int h);
/external/opencv/cv/src/
Dcvcorner.cpp218 int i, j, y, dst_y = 0, max_dy, delta = 0; in icvCornerEigenValsVecs() local
394 (float*)(eigenv->data.ptr + dst_y*eigenv->step), eigenv->step, in icvCornerEigenValsVecs()
398 (float*)(eigenv->data.ptr + dst_y*eigenv->step), eigenv->step, in icvCornerEigenValsVecs()
402 (float*)(eigenv->data.ptr + dst_y*eigenv->step), eigenv->step, in icvCornerEigenValsVecs()
405 dst_y += stripe_size.height; in icvCornerEigenValsVecs()
515 int i, j, y, dst_y = 0, max_dy, delta = 0; in cvPreCornerDetect() local
654 for( i = 0; i < stripe_size.height; i++, dst_y++ ) in cvPreCornerDetect()
656 float* dstdata = (float*)(dst->data.ptr + dst_y*dst->step); in cvPreCornerDetect()
/external/libvpx/libvpx/vp8/common/x86/
Drecon_wrapper_sse2.c130 unsigned char *dst_y, in vp8_build_intra_predictors_mby_x86() argument
159 fn(dst_y, dst_stride, yabove_row, yleft, left_stride); in vp8_build_intra_predictors_mby_x86()
/external/libvpx/libvpx/vp8/encoder/
Dpicklpf.c28 unsigned char *src_y, *dst_y; in vp8_yv12_copy_partial_frame_c() local
49 dst_y = dst_ybc->y_buffer + yoffset; in vp8_yv12_copy_partial_frame_c()
51 vpx_memcpy(dst_y, src_y, ystride * linestocopy); in vp8_yv12_copy_partial_frame_c()

12