Home
last modified time | relevance | path

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

1234567

/external/chromium_org/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
71 !dst_y || !dst_u || !dst_v || in I420Copy()
87 if (dst_y) { in I420Copy()
88 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 …]
Dconvert_from_argb.cc27 uint8* dst_y, int dst_stride_y, in ARGBToI444() argument
31 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444()
48 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444()
69 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in ARGBToI444()
88 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444()
90 dst_y += dst_stride_y; in ARGBToI444()
100 uint8* dst_y, int dst_stride_y, in ARGBToI422() argument
104 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422()
135 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI422()
143 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in ARGBToI422()
[all …]
Dplanar_functions.cc29 uint8* dst_y, int dst_stride_y, in CopyPlane() argument
48 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in CopyPlane()
70 CopyRow(src_y, dst_y, width); in CopyPlane()
72 dst_y += dst_stride_y; in CopyPlane()
78 uint16* dst_y, int dst_stride_y, in CopyPlane_16() argument
97 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in CopyPlane_16()
119 CopyRow(src_y, dst_y, width); in CopyPlane_16()
121 dst_y += dst_stride_y; in CopyPlane_16()
130 uint8* dst_y, int dst_stride_y, in I422Copy() argument
136 !dst_y || !dst_u || !dst_v || in I422Copy()
[all …]
Drow_neon.cc1037 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument
1046 "+r"(dst_y), // %1 in YUY2ToYRow_NEON()
1053 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { in UYVYToYRow_NEON() argument
1062 "+r"(dst_y), // %1 in UYVYToYRow_NEON()
1334 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_NEON() argument
1352 "+r"(dst_y), // %1 in ARGBToYRow_NEON()
1359 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_NEON() argument
1375 "+r"(dst_y), // %1 in ARGBToYJRow_NEON()
2033 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument
2052 "+r"(dst_y), // %1 in RGB565ToYRow_NEON()
[all …]
Dformat_conversion.cc291 uint8* dst_y, int dst_stride_y, in BayerToI420() argument
303 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in BayerToI420()
310 dst_y = dst_y + (height - 1) * dst_stride_y; in BayerToI420()
324 if (IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in BayerToI420()
375 ARGBToYRow(row, dst_y, width); in BayerToI420()
376 ARGBToYRow(row + kRowSize, dst_y + dst_stride_y, width); in BayerToI420()
378 dst_y += dst_stride_y * 2; in BayerToI420()
385 ARGBToYRow(row, dst_y, width); in BayerToI420()
498 uint8* dst_y, int dst_stride_y, \
503 dst_y, dst_stride_y, \
/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,
/external/chromium_org/third_party/libyuv/include/libyuv/
Dconvert.h30 uint8* dst_y, int dst_stride_y,
40 uint8* dst_y, int dst_stride_y,
50 uint8* dst_y, int dst_stride_y,
61 uint8* dst_y, int dst_stride_y,
69 uint8* dst_y, int dst_stride_y,
78 uint8* dst_y, int dst_stride_y,
87 uint8* dst_y, int dst_stride_y,
95 uint8* dst_y, int dst_stride_y,
103 uint8* dst_y, int dst_stride_y,
111 uint8* dst_y, int dst_stride_y,
[all …]
Dconvert_from_argb.h81 uint8* dst_y, int dst_stride_y,
89 uint8* dst_y, int dst_stride_y,
97 uint8* dst_y, int dst_stride_y,
113 uint8* dst_y, int dst_stride_y,
127 uint8* dst_y, int dst_stride_y,
133 uint8* dst_y, int dst_stride_y,
140 uint8* dst_y, int dst_stride_y,
147 uint8* dst_y, int dst_stride_y,
Drow.h527 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
528 void ARGBToYRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
529 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
530 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
531 void ARGBToYJRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix);
532 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix);
533 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix);
534 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix);
535 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix);
536 void RGB24ToYRow_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix);
[all …]
Dplanar_functions.h28 uint8* dst_y, int dst_stride_y,
33 uint16* dst_y, int dst_stride_y,
38 void SetPlane(uint8* dst_y, int dst_stride_y,
45 uint8* dst_y, int dst_stride_y,
55 uint8* dst_y, int dst_stride_y,
66 uint8* dst_y, int dst_stride_y,
74 uint8* dst_y, int dst_stride_y,
82 uint8* dst_y, int dst_stride_y,
92 uint8* dst_y, int dst_stride_y,
103 uint8* dst_y, int dst_stride_y,
[all …]
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,
66 uint8* dst_y, int dst_stride_y,
74 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 …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_rect.c48 unsigned dst_y, in util_copy_rect() argument
67 dst_y /= blockheight; in util_copy_rect()
75 dst += dst_y * dst_stride; in util_copy_rect()
95 unsigned dst_y, in util_fill_rect() argument
112 dst_y /= blockheight; in util_fill_rect()
117 dst += dst_y * dst_stride; in util_fill_rect()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_rect.c48 unsigned dst_y, in util_copy_rect() argument
67 dst_y /= blockheight; in util_copy_rect()
75 dst += dst_y * dst_stride; in util_copy_rect()
95 unsigned dst_y, in util_fill_rect() argument
112 dst_y /= blockheight; in util_fill_rect()
117 dst += dst_y * dst_stride; in util_fill_rect()
/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/chromium_org/third_party/libvpx/source/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/mesa3d/src/gallium/drivers/i915/
Di915_blit.c98 short dst_x, short dst_y, in i915_copy_blit() argument
102 int dst_y2 = dst_y + h; in i915_copy_blit()
111 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in i915_copy_blit()
136 if (dst_y2 < dst_y || dst_x2 < dst_x) { in i915_copy_blit()
152 OUT_BATCH((dst_y << 16) | dst_x); in i915_copy_blit()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
Di915_blit.c98 short dst_x, short dst_y, in i915_copy_blit() argument
102 int dst_y2 = dst_y + h; in i915_copy_blit()
111 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in i915_copy_blit()
136 if (dst_y2 < dst_y || dst_x2 < dst_x) { in i915_copy_blit()
152 OUT_BATCH((dst_y << 16) | dst_x); in i915_copy_blit()
/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/chromium_org/third_party/libvpx/source/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/chromium_org/third_party/libjingle/source/talk/media/base/
Dvideoframe.cc87 uint8* dst_y, uint8* dst_u, uint8* dst_v, in CopyToPlanes() argument
95 dst_y, dst_pitch_y, in CopyToPlanes()
101 memcpy(dst_y, GetYPlane(), GetWidth() * GetHeight()); in CopyToPlanes()
120 uint8* dst_y, uint8* dst_u, uint8* dst_v, in StretchToPlanes() argument
131 CopyToPlanes(dst_y, dst_u, dst_v, dst_pitch_y, dst_pitch_u, dst_pitch_v); in StretchToPlanes()
165 dst_y, dst_u, dst_v, dst_pitch_y, dst_pitch_u, dst_pitch_v, in StretchToPlanes()
180 uint8* dst_y = dst_buffer; in StretchToBuffer() local
181 uint8* dst_u = dst_y + dst_width * dst_height; in StretchToBuffer()
183 StretchToPlanes(dst_y, dst_u, dst_v, in StretchToBuffer()

1234567