/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/ |
D | convert.cc | 34 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 …]
|
D | convert_from_argb.cc | 27 uint8* dst_y, int dst_stride_y, in ARGBToI444() argument 32 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444() 36 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444() 77 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in ARGBToI444() 94 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444() 96 dst_y += dst_stride_y; in ARGBToI444() 106 uint8* dst_y, int dst_stride_y, in ARGBToI422() argument 113 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI422() 115 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422() 157 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in ARGBToI422() [all …]
|
D | planar_functions.cc | 29 uint8* dst_y, int dst_stride_y, in CopyPlane() argument 41 if (src_y == dst_y && src_stride_y == dst_stride_y) { in CopyPlane() 52 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in CopyPlane() 74 CopyRow(src_y, dst_y, width); in CopyPlane() 76 dst_y += dst_stride_y; in CopyPlane() 82 uint16* dst_y, int dst_stride_y, in CopyPlane_16() argument 101 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in CopyPlane_16() 123 CopyRow(src_y, dst_y, width); in CopyPlane_16() 125 dst_y += dst_stride_y; in CopyPlane_16() 134 uint8* dst_y, int dst_stride_y, in I422Copy() argument [all …]
|
D | row_neon.cc | 1140 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 1151 "+r"(dst_y), // %1 in YUY2ToYRow_NEON() 1158 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { in UYVYToYRow_NEON() argument 1169 "+r"(dst_y), // %1 in UYVYToYRow_NEON() 1479 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_NEON() argument 1499 "+r"(dst_y), // %1 in ARGBToYRow_NEON() 1506 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_NEON() argument 1524 "+r"(dst_y), // %1 in ARGBToYJRow_NEON() 2255 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument 2276 "+r"(dst_y), // %1 in RGB565ToYRow_NEON() [all …]
|
D | row_neon64.cc | 1209 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 1220 "+r"(dst_y), // %1 in YUY2ToYRow_NEON() 1229 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { in UYVYToYRow_NEON() argument 1240 "+r"(dst_y), // %1 in UYVYToYRow_NEON() 1579 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_NEON() argument 1599 "+r"(dst_y), // %1 in ARGBToYRow_NEON() 1608 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_NEON() argument 1626 "+r"(dst_y), // %1 in ARGBToYJRow_NEON() 2385 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument 2406 "+r"(dst_y), // %1 in RGB565ToYRow_NEON() [all …]
|
/external/chromium_org/third_party/libyuv/source/ |
D | convert.cc | 34 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 …]
|
D | convert_from_argb.cc | 27 uint8* dst_y, int dst_stride_y, in ARGBToI444() argument 32 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI444() 36 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI444() 70 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in ARGBToI444() 89 ARGBToYRow(src_argb, dst_y, width); in ARGBToI444() 91 dst_y += dst_stride_y; in ARGBToI444() 101 uint8* dst_y, int dst_stride_y, in ARGBToI422() argument 108 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix) = in ARGBToI422() 110 if (!src_argb || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in ARGBToI422() 145 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in ARGBToI422() [all …]
|
D | planar_functions.cc | 29 uint8* dst_y, int dst_stride_y, in CopyPlane() argument 41 if (src_y == dst_y && src_stride_y == dst_stride_y) { in CopyPlane() 52 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in CopyPlane() 74 CopyRow(src_y, dst_y, width); in CopyPlane() 76 dst_y += dst_stride_y; in CopyPlane() 82 uint16* dst_y, int dst_stride_y, in CopyPlane_16() argument 101 IS_ALIGNED(dst_y, 16) && IS_ALIGNED(dst_stride_y, 16)) { in CopyPlane_16() 123 CopyRow(src_y, dst_y, width); in CopyPlane_16() 125 dst_y += dst_stride_y; in CopyPlane_16() 134 uint8* dst_y, int dst_stride_y, in I422Copy() argument [all …]
|
D | row_neon.cc | 1141 void YUY2ToYRow_NEON(const uint8* src_yuy2, uint8* dst_y, int pix) { in YUY2ToYRow_NEON() argument 1152 "+r"(dst_y), // %1 in YUY2ToYRow_NEON() 1159 void UYVYToYRow_NEON(const uint8* src_uyvy, uint8* dst_y, int pix) { in UYVYToYRow_NEON() argument 1170 "+r"(dst_y), // %1 in UYVYToYRow_NEON() 1480 void ARGBToYRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYRow_NEON() argument 1500 "+r"(dst_y), // %1 in ARGBToYRow_NEON() 1507 void ARGBToYJRow_NEON(const uint8* src_argb, uint8* dst_y, int pix) { in ARGBToYJRow_NEON() argument 1525 "+r"(dst_y), // %1 in ARGBToYJRow_NEON() 2256 void RGB565ToYRow_NEON(const uint8* src_rgb565, uint8* dst_y, int pix) { in RGB565ToYRow_NEON() argument 2277 "+r"(dst_y), // %1 in RGB565ToYRow_NEON() [all …]
|
/external/libyuv/files/include/libyuv/ |
D | convert.h | 33 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 …]
|
D | row.h | 218 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 …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/ |
D | convert.h | 30 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 …]
|
D | convert_from_argb.h | 79 uint8* dst_y, int dst_stride_y, 87 uint8* dst_y, int dst_stride_y, 95 uint8* dst_y, int dst_stride_y, 111 uint8* dst_y, int dst_stride_y, 125 uint8* dst_y, int dst_stride_y, 131 uint8* dst_y, int dst_stride_y, 138 uint8* dst_y, int dst_stride_y, 145 uint8* dst_y, int dst_stride_y,
|
D | row.h | 643 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 644 void ARGBToYRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 645 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix); 646 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 647 void ARGBToYJRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 648 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix); 649 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 650 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix); 651 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix); 652 void RGB24ToYRow_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); [all …]
|
D | planar_functions.h | 28 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 …]
|
/external/chromium_org/third_party/libyuv/include/libyuv/ |
D | convert.h | 30 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 …]
|
D | convert_from_argb.h | 79 uint8* dst_y, int dst_stride_y, 87 uint8* dst_y, int dst_stride_y, 95 uint8* dst_y, int dst_stride_y, 111 uint8* dst_y, int dst_stride_y, 125 uint8* dst_y, int dst_stride_y, 131 uint8* dst_y, int dst_stride_y, 138 uint8* dst_y, int dst_stride_y, 145 uint8* dst_y, int dst_stride_y,
|
D | row.h | 551 void ARGBToYRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 552 void ARGBToYRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 553 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix); 554 void ARGBToYJRow_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 555 void ARGBToYJRow_Any_AVX2(const uint8* src_argb, uint8* dst_y, int pix); 556 void ARGBToYJRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix); 557 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 558 void ABGRToYRow_SSSE3(const uint8* src_abgr, uint8* dst_y, int pix); 559 void RGBAToYRow_SSSE3(const uint8* src_rgba, uint8* dst_y, int pix); 560 void RGB24ToYRow_SSSE3(const uint8* src_rgb24, uint8* dst_y, int pix); [all …]
|
D | planar_functions.h | 28 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 …]
|
/external/libyuv/files/source/ |
D | convert.cc | 34 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 …]
|
D | planar_functions.cc | 29 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 …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_rect.c | 48 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/ |
D | u_rect.c | 48 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/ |
D | row.h | 81 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/mesa/src/src/gallium/drivers/i915/ |
D | i915_blit.c | 98 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()
|