Home
last modified time | relevance | path

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

12345678

/external/libaom/libaom/third_party/libyuv/source/
Dconvert.cc34 uint8* dst_y, int dst_stride_y, in I4xxToI420() argument
48 dst_y, dst_stride_y, dst_y_width, dst_y_height, in I4xxToI420()
66 uint8* dst_y, int dst_stride_y, in I420Copy() argument
73 !dst_y || !dst_u || !dst_v || in I420Copy()
89 if (dst_y) { in I420Copy()
90 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
104 uint8* dst_y, int dst_stride_y, in I422ToI420() argument
112 dst_y, dst_stride_y, in I422ToI420()
125 uint8* dst_y, int dst_stride_y, in I444ToI420() argument
132 dst_y, dst_stride_y, in I444ToI420()
[all …]
Dplanar_functions.cc29 uint8* dst_y, int dst_stride_y, in CopyPlane() argument
41 if (src_y == dst_y && src_stride_y == dst_stride_y) { in CopyPlane()
72 CopyRow(src_y, dst_y, width); in CopyPlane()
74 dst_y += dst_stride_y; in CopyPlane()
80 uint16* dst_y, int dst_stride_y, in CopyPlane_16() argument
114 CopyRow(src_y, dst_y, width); in CopyPlane_16()
116 dst_y += dst_stride_y; in CopyPlane_16()
125 uint8* dst_y, int dst_stride_y, in I422Copy() argument
131 !dst_y || !dst_u || !dst_v || in I422Copy()
145 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I422Copy()
[all …]
Dconvert_from_argb.cc26 uint8* dst_y, int dst_stride_y, in ARGBToI444() argument
31 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444()
35 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
95 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444()
97 dst_y += dst_stride_y; in ARGBToI444()
107 uint8* dst_y, int dst_stride_y, in ARGBToI422() argument
114 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI422()
116 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
176 ARGBToYRow(src_argb, dst_y, width); in ARGBToI422()
178 dst_y += dst_stride_y; in ARGBToI422()
[all …]
Drow_neon.cc1118 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument
1129 "+r"(dst_y), // %1 in YUY2ToYRow_NEON()
1136 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { in UYVYToYRow_NEON() argument
1147 "+r"(dst_y), // %1 in UYVYToYRow_NEON()
1415 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_NEON() argument
1435 "+r"(dst_y), // %1 in ARGBToYRow_NEON()
1442 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_NEON() argument
1460 "+r"(dst_y), // %1 in ARGBToYJRow_NEON()
2191 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument
2212 "+r"(dst_y), // %1 in RGB565ToYRow_NEON()
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc37 uint8_t* dst_y, in I4xxToI420() argument
54 if (dst_y) { in I4xxToI420()
55 ScalePlane(src_y, src_stride_y, src_y_width, src_y_height, dst_y, in I4xxToI420()
75 uint8_t* dst_y, in I420Copy() argument
100 if (dst_y) { in I420Copy()
101 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
117 uint16_t* dst_y, in I010Copy() argument
142 if (dst_y) { in I010Copy()
143 CopyPlane_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I010Copy()
159 uint8_t* dst_y, in I010ToI420() argument
[all …]
Dconvert_to_i420.cc30 uint8_t* dst_y, in ConvertToI420() argument
55 dst_y == sample; in ConvertToI420()
56 uint8_t* tmp_y = dst_y; in ConvertToI420()
66 if (!dst_y || !dst_u || !dst_v || !sample || src_width <= 0 || in ConvertToI420()
83 dst_y = rotate_buffer; in ConvertToI420()
84 dst_u = dst_y + y_size; in ConvertToI420()
94 r = YUY2ToI420(src, aligned_src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
100 r = UYVYToI420(src, aligned_src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
106 r = RGB565ToI420(src, src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
112 r = ARGB1555ToI420(src, src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
[all …]
Dplanar_functions.cc31 uint8_t* dst_y, in CopyPlane() argument
40 dst_y = dst_y + (height - 1) * dst_stride_y; in CopyPlane()
50 if (src_y == dst_y && src_stride_y == dst_stride_y) { in CopyPlane()
77 CopyRow(src_y, dst_y, width); in CopyPlane()
79 dst_y += dst_stride_y; in CopyPlane()
88 uint16_t* dst_y, in CopyPlane_16() argument
118 CopyRow(src_y, dst_y, width); in CopyPlane_16()
120 dst_y += dst_stride_y; in CopyPlane_16()
128 uint8_t* dst_y, in Convert16To8Plane() argument
134 void (*Convert16To8Row)(const uint16_t* src_y, uint8_t* dst_y, int scale, in Convert16To8Plane()
[all …]
Drow_neon.cc941 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument
949 "+r"(dst_y), // %1 in YUY2ToYRow_NEON()
956 void UYVYToYRow_NEON(const uint8_t* src_uyvy, uint8_t* dst_y, int width) { in UYVYToYRow_NEON() argument
964 "+r"(dst_y), // %1 in UYVYToYRow_NEON()
1206 void ARGBToYRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYRow_NEON() argument
1223 "+r"(dst_y), // %1 in ARGBToYRow_NEON()
1247 void ARGBToYJRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYJRow_NEON() argument
1262 "+r"(dst_y), // %1 in ARGBToYJRow_NEON()
1839 void RGB565ToYRow_NEON(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_NEON() argument
1857 "+r"(dst_y), // %1 in RGB565ToYRow_NEON()
[all …]
Drow_neon64.cc996 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument
1004 "+r"(dst_y), // %1 in YUY2ToYRow_NEON()
1011 void UYVYToYRow_NEON(const uint8_t* src_uyvy, uint8_t* dst_y, int width) { in UYVYToYRow_NEON() argument
1019 "+r"(dst_y), // %1 in UYVYToYRow_NEON()
1263 void ARGBToYRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYRow_NEON() argument
1280 "+r"(dst_y), // %1 in ARGBToYRow_NEON()
1304 void ARGBToYJRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYJRow_NEON() argument
1319 "+r"(dst_y), // %1 in ARGBToYJRow_NEON()
1869 void RGB565ToYRow_NEON(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_NEON() argument
1887 "+r"(dst_y), // %1 in RGB565ToYRow_NEON()
[all …]
/external/libyuv/files/include/libyuv/
Dconvert.h36 uint8_t* dst_y,
53 uint8_t* dst_y,
68 uint8_t* dst_y,
85 uint8_t* dst_y,
101 uint8_t* dst_y,
120 uint16_t* dst_y,
138 uint8_t* dst_y,
151 uint8_t* dst_y,
164 uint8_t* dst_y,
179 uint8_t* dst_y,
[all …]
Dplanar_functions.h47 uint8_t* dst_y,
55 uint16_t* dst_y,
63 uint8_t* dst_y,
72 uint16_t* dst_y,
80 void SetPlane(uint8_t* dst_y,
138 uint8_t* dst_y,
154 uint8_t* dst_y,
172 uint8_t* dst_y,
185 uint8_t* dst_y,
198 uint8_t* dst_y,
[all …]
Dconvert_from_argb.h143 uint8_t* dst_y,
156 uint8_t* dst_y,
169 uint8_t* dst_y,
217 uint8_t* dst_y,
235 uint8_t* dst_y,
246 uint8_t* dst_y,
257 uint8_t* dst_y,
268 uint8_t* dst_y,
/external/libyuv/files/source/
Dconvert.cc37 uint8_t* dst_y, in I4xxToI420() argument
54 if (dst_y) { in I4xxToI420()
55 ScalePlane(src_y, src_stride_y, src_y_width, src_y_height, dst_y, in I4xxToI420()
75 uint8_t* dst_y, in I420Copy() argument
100 if (dst_y) { in I420Copy()
101 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Copy()
117 uint16_t* dst_y, in I010Copy() argument
142 if (dst_y) { in I010Copy()
143 CopyPlane_16(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I010Copy()
159 uint8_t* dst_y, in I010ToI420() argument
[all …]
Dconvert_to_i420.cc30 uint8_t* dst_y, in ConvertToI420() argument
55 dst_y == sample; in ConvertToI420()
56 uint8_t* tmp_y = dst_y; in ConvertToI420()
66 if (!dst_y || !dst_u || !dst_v || !sample || src_width <= 0 || in ConvertToI420()
83 dst_y = rotate_buffer; in ConvertToI420()
84 dst_u = dst_y + y_size; in ConvertToI420()
94 r = YUY2ToI420(src, aligned_src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
100 r = UYVYToI420(src, aligned_src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
106 r = RGB565ToI420(src, src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
112 r = ARGB1555ToI420(src, src_width * 2, dst_y, dst_stride_y, dst_u, in ConvertToI420()
[all …]
Dplanar_functions.cc31 uint8_t* dst_y, in CopyPlane() argument
40 dst_y = dst_y + (height - 1) * dst_stride_y; in CopyPlane()
50 if (src_y == dst_y && src_stride_y == dst_stride_y) { in CopyPlane()
77 CopyRow(src_y, dst_y, width); in CopyPlane()
79 dst_y += dst_stride_y; in CopyPlane()
88 uint16_t* dst_y, in CopyPlane_16() argument
118 CopyRow(src_y, dst_y, width); in CopyPlane_16()
120 dst_y += dst_stride_y; in CopyPlane_16()
128 uint8_t* dst_y, in Convert16To8Plane() argument
134 void (*Convert16To8Row)(const uint16_t* src_y, uint8_t* dst_y, int scale, in Convert16To8Plane()
[all …]
Drow_neon.cc941 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument
949 "+r"(dst_y), // %1 in YUY2ToYRow_NEON()
956 void UYVYToYRow_NEON(const uint8_t* src_uyvy, uint8_t* dst_y, int width) { in UYVYToYRow_NEON() argument
964 "+r"(dst_y), // %1 in UYVYToYRow_NEON()
1206 void ARGBToYRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYRow_NEON() argument
1223 "+r"(dst_y), // %1 in ARGBToYRow_NEON()
1247 void ARGBToYJRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYJRow_NEON() argument
1262 "+r"(dst_y), // %1 in ARGBToYJRow_NEON()
1839 void RGB565ToYRow_NEON(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_NEON() argument
1857 "+r"(dst_y), // %1 in RGB565ToYRow_NEON()
[all …]
Drow_neon64.cc996 void YUY2ToYRow_NEON(const uint8_t* src_yuy2, uint8_t* dst_y, int width) { in YUY2ToYRow_NEON() argument
1004 "+r"(dst_y), // %1 in YUY2ToYRow_NEON()
1011 void UYVYToYRow_NEON(const uint8_t* src_uyvy, uint8_t* dst_y, int width) { in UYVYToYRow_NEON() argument
1019 "+r"(dst_y), // %1 in UYVYToYRow_NEON()
1263 void ARGBToYRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYRow_NEON() argument
1280 "+r"(dst_y), // %1 in ARGBToYRow_NEON()
1304 void ARGBToYJRow_NEON(const uint8_t* src_argb, uint8_t* dst_y, int width) { in ARGBToYJRow_NEON() argument
1319 "+r"(dst_y), // %1 in ARGBToYJRow_NEON()
1869 void RGB565ToYRow_NEON(const uint8_t* src_rgb565, uint8_t* dst_y, int width) { in RGB565ToYRow_NEON() argument
1887 "+r"(dst_y), // %1 in RGB565ToYRow_NEON()
[all …]
Drotate.cc423 uint8_t* dst_y, in I420Rotate() argument
434 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
455 src_stride_v, dst_y, dst_stride_y, dst_u, dst_stride_u, in I420Rotate()
458 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
465 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
472 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
491 uint8_t* dst_y, in I444Rotate() argument
500 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
519 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
524 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
[all …]
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dconvert.h31 uint8* dst_y, int dst_stride_y,
41 uint8* dst_y, int dst_stride_y,
51 uint8* dst_y, int dst_stride_y,
62 uint8* dst_y, int dst_stride_y,
70 uint8* dst_y, int dst_stride_y,
81 uint8* dst_y, int dst_stride_y,
90 uint8* dst_y, int dst_stride_y,
98 uint8* dst_y, int dst_stride_y,
106 uint8* dst_y, int dst_stride_y,
114 uint8* dst_y, int dst_stride_y,
[all …]
Dplanar_functions.h29 uint8* dst_y, int dst_stride_y,
34 uint16* dst_y, int dst_stride_y,
39 void SetPlane(uint8* dst_y, int dst_stride_y,
46 uint8* dst_y, int dst_stride_y,
57 uint8* dst_y, int dst_stride_y,
68 uint8* dst_y, int dst_stride_y,
76 uint8* dst_y, int dst_stride_y,
84 uint8* dst_y, int dst_stride_y,
91 uint8* dst_y, int dst_stride_y,
97 uint8* dst_y, int dst_stride_y,
[all …]
Dconvert_from_argb.h90 uint8* dst_y, int dst_stride_y,
98 uint8* dst_y, int dst_stride_y,
106 uint8* dst_y, int dst_stride_y,
130 uint8* dst_y, int dst_stride_y,
144 uint8* dst_y, int dst_stride_y,
156 uint8* dst_y, int dst_stride_y,
163 uint8* dst_y, int dst_stride_y,
170 uint8* dst_y, int dst_stride_y,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert.h36 uint8_t* dst_y,
53 uint8_t* dst_y,
71 uint8_t* dst_y,
90 uint16_t* dst_y,
108 uint8_t* dst_y,
121 uint8_t* dst_y,
138 uint8_t* dst_y,
153 uint8_t* dst_y,
166 uint8_t* dst_y,
179 uint8_t* dst_y,
[all …]
Dplanar_functions.h47 uint8_t* dst_y,
55 uint16_t* dst_y,
63 uint8_t* dst_y,
72 uint16_t* dst_y,
80 void SetPlane(uint8_t* dst_y,
138 uint8_t* dst_y,
154 uint8_t* dst_y,
172 uint8_t* dst_y,
185 uint8_t* dst_y,
198 uint8_t* dst_y,
[all …]
/external/igt-gpu-tools/lib/
Drendercopy.h30 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
35 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
40 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
45 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
50 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
55 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
60 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
65 const struct igt_buf *dst, unsigned dst_x, unsigned dst_y);
/external/libdrm/exynos/
Dexynos_fimg2d.c501 unsigned int dst_x, unsigned dst_y, unsigned int w, in g2d_copy() argument
519 if (dst_y + dst->height > h) in g2d_copy()
520 dst_h = dst->height - dst_y; in g2d_copy()
551 pt.data.y = dst_y; in g2d_copy()
554 pt.data.y = dst_y + h; in g2d_copy()
584 unsigned int dst_x, unsigned dst_y, unsigned int w, in g2d_move() argument
603 if (dst_y + img->height > h) in g2d_move()
604 dst_h = img->height - dst_y; in g2d_move()
633 if (dst_y >= src_y) in g2d_move()
646 pt.data.y = dst_y; in g2d_move()
[all …]

12345678