/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 | 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 | 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 | 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()
|
/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/source/ |
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 | convert.cc | 1135 int BGRAToI420(const uint8_t* src_bgra, in BGRAToI420() argument 1149 void (*BGRAToYRow)(const uint8_t* src_bgra, uint8_t* dst_y, int width) = in BGRAToI420() 1151 if (!src_bgra || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in BGRAToI420() 1157 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in BGRAToI420() 1220 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420() 1221 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420() 1222 BGRAToYRow(src_bgra + src_stride_bgra, dst_y + dst_stride_y, width); in BGRAToI420() 1223 src_bgra += src_stride_bgra * 2; in BGRAToI420() 1229 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420() 1230 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420()
|
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 | 2924 int ARGBShuffle(const uint8_t* src_bgra, in ARGBShuffle() argument 2932 void (*ARGBShuffleRow)(const uint8_t* src_bgra, uint8_t* dst_argb, in ARGBShuffle() 2934 if (!src_bgra || !dst_argb || width <= 0 || height == 0) { in ARGBShuffle() 2940 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in ARGBShuffle() 2991 ARGBShuffleRow(src_bgra, dst_argb, shuffler, width); in ARGBShuffle() 2992 src_bgra += src_stride_bgra; in ARGBShuffle()
|
D | convert_argb.cc | 1120 int BGRAToARGB(const uint8_t* src_bgra, in BGRAToARGB() argument 1126 return ARGBShuffle(src_bgra, src_stride_bgra, dst_argb, dst_stride_argb, in BGRAToARGB() 1132 int ARGBToBGRA(const uint8_t* src_bgra, in ARGBToBGRA() argument 1138 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/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,
|
/external/libyuv/files/include/libyuv/ |
D | convert.h | 297 int BGRAToI420(const uint8_t* src_bgra,
|
D | convert_argb.h | 533 int BGRAToARGB(const uint8_t* src_bgra,
|
D | planar_functions.h | 820 int ARGBShuffle(const uint8_t* src_bgra,
|