/external/chromium_org/third_party/libyuv/source/ |
D | convert.cc | 737 int BGRAToI420(const uint8* src_bgra, int src_stride_bgra, in BGRAToI420() argument 742 if (!src_bgra || in BGRAToI420() 750 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in BGRAToI420() 755 void (*BGRAToYRow)(const uint8* src_bgra, uint8* dst_y, int pix) = in BGRAToI420() 764 if (IS_ALIGNED(src_bgra, 16) && IS_ALIGNED(src_stride_bgra, 16)) { in BGRAToI420() 788 BGRAToUVRow(src_bgra, src_stride_bgra, dst_u, dst_v, width); in BGRAToI420() 789 BGRAToYRow(src_bgra, dst_y, width); in BGRAToI420() 790 BGRAToYRow(src_bgra + src_stride_bgra, dst_y + dst_stride_y, width); in BGRAToI420() 791 src_bgra += src_stride_bgra * 2; in BGRAToI420() 797 BGRAToUVRow(src_bgra, 0, dst_u, dst_v, width); in BGRAToI420() [all …]
|
D | row_neon.cc | 1626 void BGRAToUVRow_NEON(const uint8* src_bgra, int src_stride_bgra, in BGRAToUVRow_NEON() argument 1658 : "+r"(src_bgra), // %0 in BGRAToUVRow_NEON() 2111 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_NEON() argument 2128 : "+r"(src_bgra), // %0 in BGRAToYRow_NEON()
|
D | planar_functions.cc | 1851 int ARGBShuffle(const uint8* src_bgra, int src_stride_bgra, in ARGBShuffle() argument 1855 void (*ARGBShuffleRow)(const uint8* src_bgra, uint8* dst_argb, in ARGBShuffle() 1857 if (!src_bgra || !dst_argb || in ARGBShuffle() 1864 src_bgra = src_bgra + (height - 1) * src_stride_bgra; in ARGBShuffle() 1887 if (IS_ALIGNED(src_bgra, 16) && IS_ALIGNED(src_stride_bgra, 16) && in ARGBShuffle() 1912 ARGBShuffleRow(src_bgra, dst_argb, shuffler, width); in ARGBShuffle() 1913 src_bgra += src_stride_bgra; in ARGBShuffle()
|
D | convert_argb.cc | 366 int BGRAToARGB(const uint8* src_bgra, int src_stride_bgra, in BGRAToARGB() argument 369 return ARGBShuffle(src_bgra, src_stride_bgra, in BGRAToARGB()
|
D | row_posix.cc | 1427 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_SSSE3() argument 1452 : "+r"(src_bgra), // %0 in BGRAToYRow_SSSE3() 1464 void BGRAToYRow_Unaligned_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix) { in BGRAToYRow_Unaligned_SSSE3() argument 1489 : "+r"(src_bgra), // %0 in BGRAToYRow_Unaligned_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/source/ |
D | row.h | 128 void BGRAToARGBRow_SSSE3(const uint8* src_bgra, uint8* dst_argb, int pix); 133 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int pix);
|
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/ |
D | row.h | 128 void BGRAToARGBRow_SSSE3(const uint8* src_bgra, uint8* dst_argb, int pix); 133 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int pix);
|
/external/chromium_org/third_party/libyuv/include/libyuv/ |
D | row.h | 533 void BGRAToYRow_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 540 void BGRAToYRow_Unaligned_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 557 void BGRAToUVRow_NEON(const uint8* src_bgra, int src_stride_bgra, 573 void BGRAToYRow_NEON(const uint8* src_bgra, uint8* dst_y, int pix); 583 void BGRAToYRow_C(const uint8* src_bgra, uint8* dst_y, int pix); 593 void BGRAToYRow_Any_SSSE3(const uint8* src_bgra, uint8* dst_y, int pix); 600 void BGRAToYRow_Any_NEON(const uint8* src_bgra, uint8* dst_y, int pix); 617 void BGRAToUVRow_SSSE3(const uint8* src_bgra, int src_stride_bgra, 627 void BGRAToUVRow_Unaligned_SSSE3(const uint8* src_bgra, int src_stride_bgra, 637 void BGRAToUVRow_Any_SSSE3(const uint8* src_bgra, int src_stride_bgra, [all …]
|
D | planar_functions.h | 412 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);
|