/external/libaom/libaom/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 | convert.cc | 633 int BGRAToI420(const uint8* src_bgra, in BGRAToI420() argument 646 void (*BGRAToYRow)(const uint8* src_bgra, uint8* dst_y, int width) = in BGRAToI420() 648 if (!src_bgra || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in BGRAToI420() 654 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in BGRAToI420() 717 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420() 718 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420() 719 BGRAToYRow(src_bgra + src_stride_bgra, dst_y + dst_stride_y, width); in BGRAToI420() 720 src_bgra += src_stride_bgra * 2; in BGRAToI420() 726 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420() 727 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420()
|
D | row_neon64.cc | 1503 void BGRAToUVRow_NEON(const uint8* src_bgra, in BGRAToUVRow_NEON() argument 1508 const uint8* src_bgra_1 = src_bgra + src_stride_bgra; in BGRAToUVRow_NEON() 1534 : "+r"(src_bgra), // %0 in BGRAToUVRow_NEON() 2017 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int width) { in BGRAToYRow_NEON() argument 2035 : "+r"(src_bgra), // %0 in BGRAToYRow_NEON()
|
D | row_neon.cc | 1492 void BGRAToUVRow_NEON(const uint8* src_bgra, in BGRAToUVRow_NEON() argument 1532 : "+r"(src_bgra), // %0 in BGRAToUVRow_NEON() 2044 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int width) { in BGRAToYRow_NEON() argument 2062 : "+r"(src_bgra), // %0 in BGRAToYRow_NEON()
|
D | planar_functions.cc | 2475 int ARGBShuffle(const uint8* src_bgra, in ARGBShuffle() argument 2483 void (*ARGBShuffleRow)(const uint8* src_bgra, uint8* dst_argb, in ARGBShuffle() 2485 if (!src_bgra || !dst_argb || width <= 0 || height == 0) { in ARGBShuffle() 2491 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in ARGBShuffle() 2542 ARGBShuffleRow(src_bgra, dst_argb, shuffler, width); in ARGBShuffle() 2543 src_bgra += src_stride_bgra; in ARGBShuffle()
|
D | convert_argb.cc | 881 int BGRAToARGB(const uint8* src_bgra, in BGRAToARGB() argument 887 return ARGBShuffle(src_bgra, src_stride_bgra, dst_argb, dst_stride_argb, in BGRAToARGB() 893 int ARGBToBGRA(const uint8* src_bgra, in ARGBToBGRA() argument 899 return ARGBShuffle(src_bgra, src_stride_bgra, dst_argb, dst_stride_argb, in ARGBToBGRA()
|
D | row_gcc.cc | 1198 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int width) { in BGRAToYRow_SSSE3() argument 1224 : "+r"(src_bgra), // %0 in BGRAToYRow_SSSE3()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert.cc | 701 int BGRAToI420(const uint8_t* src_bgra, in BGRAToI420() argument 715 void (*BGRAToYRow)(const uint8_t* src_bgra, uint8_t* dst_y, int width) = in BGRAToI420() 717 if (!src_bgra || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in BGRAToI420() 723 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in BGRAToI420() 770 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420() 771 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420() 772 BGRAToYRow(src_bgra + src_stride_bgra, dst_y + dst_stride_y, width); in BGRAToI420() 773 src_bgra += src_stride_bgra * 2; in BGRAToI420() 779 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420() 780 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420()
|
D | row_neon64.cc | 1476 void BGRAToUVRow_NEON(const uint8_t* src_bgra, in BGRAToUVRow_NEON() argument 1481 const uint8_t* src_bgra_1 = src_bgra + src_stride_bgra; in BGRAToUVRow_NEON() 1503 : "+r"(src_bgra), // %0 in BGRAToUVRow_NEON() 1946 void BGRAToYRow_NEON(const uint8_t* src_bgra, uint8_t* dst_y, int width) { in BGRAToYRow_NEON() argument 1962 : "+r"(src_bgra), // %0 in BGRAToYRow_NEON()
|
D | row_neon.cc | 1416 void BGRAToUVRow_NEON(const uint8_t* src_bgra, in BGRAToUVRow_NEON() argument 1450 : "+r"(src_bgra), // %0 in BGRAToUVRow_NEON() 1915 void BGRAToYRow_NEON(const uint8_t* src_bgra, uint8_t* dst_y, int width) { in BGRAToYRow_NEON() argument 1931 : "+r"(src_bgra), // %0 in BGRAToYRow_NEON()
|
D | planar_functions.cc | 2676 int ARGBShuffle(const uint8_t* src_bgra, in ARGBShuffle() argument 2684 void (*ARGBShuffleRow)(const uint8_t* src_bgra, uint8_t* dst_argb, in ARGBShuffle() 2686 if (!src_bgra || !dst_argb || width <= 0 || height == 0) { in ARGBShuffle() 2692 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in ARGBShuffle() 2735 ARGBShuffleRow(src_bgra, dst_argb, shuffler, width); in ARGBShuffle() 2736 src_bgra += src_stride_bgra; in ARGBShuffle()
|
D | convert_argb.cc | 1096 int BGRAToARGB(const uint8_t* src_bgra, in BGRAToARGB() argument 1102 return ARGBShuffle(src_bgra, src_stride_bgra, dst_argb, dst_stride_argb, in BGRAToARGB() 1108 int ARGBToBGRA(const uint8_t* src_bgra, in ARGBToBGRA() argument 1114 return ARGBShuffle(src_bgra, src_stride_bgra, dst_argb, dst_stride_argb, in ARGBToBGRA()
|
D | row_gcc.cc | 1519 void BGRAToYRow_SSSE3(const uint8_t* src_bgra, uint8_t* dst_y, int width) { in BGRAToYRow_SSSE3() argument 1545 : "+r"(src_bgra), // %0 in BGRAToYRow_SSSE3()
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 869 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int width); 901 void BGRAToUVRow_NEON(const uint8* src_bgra, 946 void BGRAToUVRow_MSA(const uint8* src_bgra, 981 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int width); 989 void BGRAToYRow_MSA(const uint8* src_bgra, uint8* dst_y, int width); 996 void BGRAToUVRow_DSPR2(const uint8* src_bgra, 1001 void BGRAToYRow_DSPR2(const uint8* src_bgra, uint8* dst_y, int width); 1022 void BGRAToYRow_C(const uint8* src_bgra, uint8* dst_y, int width); 1032 void BGRAToYRow_Any_SSSE3(const uint8* src_bgra, uint8* dst_y, int width); 1039 void BGRAToYRow_Any_NEON(const uint8* src_bgra, uint8* dst_y, int width); [all …]
|
D | planar_functions.h | 756 int ARGBShuffle(const uint8* src_bgra,
|
/external/libaom/libaom/third_party/libyuv/include/libyuv/ |
D | row.h | 586 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 603 void BGRAToUVRow_NEON(const uint8* src_bgra, int src_stride_bgra, 619 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int pix); 629 void BGRAToYRow_C(const uint8* src_bgra, uint8* dst_y, int pix); 639 void BGRAToYRow_Any_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 646 void BGRAToYRow_Any_NEON(const uint8* src_bgra, uint8* dst_y, int pix); 663 void BGRAToUVRow_SSSE3(const uint8* src_bgra, int src_stride_bgra, 673 void BGRAToUVRow_Any_SSSE3(const uint8* src_bgra, int src_stride_bgra, 689 void BGRAToUVRow_Any_NEON(const uint8* src_bgra, int src_stride_bgra, 711 void BGRAToUVRow_C(const uint8* src_bgra, int src_stride_bgra,
|
D | planar_functions.h | 427 int ARGBShuffle(const uint8* src_bgra, int src_stride_bgra,
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | convert.h | 234 int BGRAToI420(const uint8_t* src_bgra,
|
D | convert_argb.h | 499 int BGRAToARGB(const uint8_t* src_bgra,
|
D | planar_functions.h | 807 int ARGBShuffle(const uint8_t* src_bgra,
|