/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 592 int BGRAToI420(const uint8* src_bgra, int src_stride_bgra, in BGRAToI420() argument 600 void (*BGRAToYRow)(const uint8* src_bgra, uint8* dst_y, int pix) = in BGRAToI420() 602 if (!src_bgra || in BGRAToI420() 610 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in BGRAToI420() 641 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420() 642 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420() 643 BGRAToYRow(src_bgra + src_stride_bgra, dst_y + dst_stride_y, width); in BGRAToI420() 644 src_bgra += src_stride_bgra * 2; in BGRAToI420() 650 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420() 651 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420()
|
D | row_neon64.cc | 1733 void BGRAToUVRow_NEON(const uint8* src_bgra, int src_stride_bgra, in BGRAToUVRow_NEON() argument 1735 const uint8* src_bgra_1 = src_bgra + src_stride_bgra; in BGRAToUVRow_NEON() 1761 : "+r"(src_bgra), // %0 in BGRAToUVRow_NEON() 2245 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_NEON() argument 2263 : "+r"(src_bgra), // %0 in BGRAToYRow_NEON()
|
D | row_neon.cc | 1736 void BGRAToUVRow_NEON(const uint8* src_bgra, int src_stride_bgra, in BGRAToUVRow_NEON() argument 1774 : "+r"(src_bgra), // %0 in BGRAToUVRow_NEON() 2275 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_NEON() argument 2294 : "+r"(src_bgra), // %0 in BGRAToYRow_NEON()
|
D | convert_argb.cc | 393 int BGRAToARGB(const uint8* src_bgra, int src_stride_bgra, in BGRAToARGB() argument 396 return ARGBShuffle(src_bgra, src_stride_bgra, in BGRAToARGB() 404 int ARGBToBGRA(const uint8* src_bgra, int src_stride_bgra, in ARGBToBGRA() argument 407 return ARGBShuffle(src_bgra, src_stride_bgra, in ARGBToBGRA()
|
D | planar_functions.cc | 1907 int ARGBShuffle(const uint8* src_bgra, int src_stride_bgra, in ARGBShuffle() argument 1911 void (*ARGBShuffleRow)(const uint8* src_bgra, uint8* dst_argb, in ARGBShuffle() 1913 if (!src_bgra || !dst_argb || in ARGBShuffle() 1920 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in ARGBShuffle() 1964 ARGBShuffleRow(src_bgra, dst_argb, shuffler, width); in ARGBShuffle() 1965 src_bgra += src_stride_bgra; in ARGBShuffle()
|
D | row_gcc.cc | 1129 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_SSSE3() argument 1154 : "+r"(src_bgra), // %0 in BGRAToYRow_SSSE3()
|
/external/libyuv/files/source/ |
D | row_posix.cc | 175 void BGRAToARGBRow_SSSE3(const uint8* src_bgra, uint8* dst_argb, int pix) { in BGRAToARGBRow_SSSE3() argument 187 : "+r"(src_bgra), // %0 in BGRAToARGBRow_SSSE3() 874 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_SSSE3() argument 899 : "+r"(src_bgra), // %0 in BGRAToYRow_SSSE3() 911 void BGRAToYRow_Unaligned_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_Unaligned_SSSE3() argument 936 : "+r"(src_bgra), // %0 in BGRAToYRow_Unaligned_SSSE3()
|
D | convert_argb.cc | 263 int BGRAToARGB(const uint8* src_bgra, int src_stride_bgra, in BGRAToARGB() argument 266 if (!src_bgra || !dst_argb || in BGRAToARGB() 273 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in BGRAToARGB() 276 void (*BGRAToARGBRow)(const uint8* src_bgra, uint8* dst_argb, int pix) = in BGRAToARGB() 281 IS_ALIGNED(src_bgra, 16) && IS_ALIGNED(src_stride_bgra, 16) && in BGRAToARGB() 288 BGRAToARGBRow(src_bgra, dst_argb, width); in BGRAToARGB() 289 src_bgra += src_stride_bgra; in BGRAToARGB()
|
D | row_neon.cc | 542 void BGRAToARGBRow_NEON(const uint8* src_bgra, uint8* dst_argb, int pix) { in BGRAToARGBRow_NEON() argument 552 : "+r"(src_bgra), // %0 in BGRAToARGBRow_NEON()
|
D | convert.cc | 984 int BGRAToI420(const uint8* src_bgra, int src_stride_bgra, in BGRAToI420() argument 989 if (!src_bgra || in BGRAToI420() 997 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in BGRAToI420() 1000 void (*BGRAToYRow)(const uint8* src_bgra, uint8* dst_y, int pix); in BGRAToI420() 1015 if (IS_ALIGNED(src_bgra, 16) && IS_ALIGNED(src_stride_bgra, 16)) { in BGRAToI420() 1026 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420() 1027 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420() 1028 BGRAToYRow(src_bgra + src_stride_bgra, dst_y + dst_stride_y, width); in BGRAToI420() 1029 src_bgra += src_stride_bgra * 2; in BGRAToI420() 1035 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420() [all …]
|
D | row_common.cc | 22 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int width) { in BGRAToARGBRow_C() argument 25 uint8 a = src_bgra[0]; in BGRAToARGBRow_C() 26 uint8 r = src_bgra[1]; in BGRAToARGBRow_C() 27 uint8 g = src_bgra[2]; in BGRAToARGBRow_C() 28 uint8 b = src_bgra[3]; in BGRAToARGBRow_C() 34 src_bgra += 4; in BGRAToARGBRow_C()
|
D | row_win.cc | 154 void BGRAToARGBRow_SSSE3(const uint8* src_bgra, uint8* dst_argb, int pix) { in BGRAToARGBRow_SSSE3() argument
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 585 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 602 void BGRAToUVRow_NEON(const uint8* src_bgra, int src_stride_bgra, 618 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int pix); 628 void BGRAToYRow_C(const uint8* src_bgra, uint8* dst_y, int pix); 638 void BGRAToYRow_Any_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 645 void BGRAToYRow_Any_NEON(const uint8* src_bgra, uint8* dst_y, int pix); 662 void BGRAToUVRow_SSSE3(const uint8* src_bgra, int src_stride_bgra, 672 void BGRAToUVRow_Any_SSSE3(const uint8* src_bgra, int src_stride_bgra, 688 void BGRAToUVRow_Any_NEON(const uint8* src_bgra, int src_stride_bgra, 710 void BGRAToUVRow_C(const uint8* src_bgra, int src_stride_bgra,
|
D | planar_functions.h | 426 int ARGBShuffle(const uint8* src_bgra, int src_stride_bgra,
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 288 void BGRAToARGBRow_SSSE3(const uint8* src_bgra, uint8* dst_argb, int pix); 297 void BGRAToARGBRow_NEON(const uint8* src_bgra, uint8* dst_argb, int pix); 303 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int pix);
|