Searched defs:src_rgb24 (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_argb.cc448 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, argument
454 if (!src_rgb24 || !dst_argb ||
461 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24;
489 RGB24ToARGBRow(src_rgb24, dst_argb, width);
490 src_rgb24 += src_stride_rgb24;
H A Dconvert.cc790 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, argument
797 void (*RGB24ToUVRow)(const uint8* src_rgb24, int src_stride_rgb24,
799 void (*RGB24ToYRow)(const uint8* src_rgb24, uint8* dst_y, int pix) =
809 if (!src_rgb24 || !dst_y || !dst_u || !dst_v ||
816 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24;
870 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width);
871 RGB24ToYRow(src_rgb24, dst_y, width);
872 RGB24ToYRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width);
874 RGB24ToARGBRow(src_rgb24, ro
[all...]
H A Drow_neon.cc931 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { argument
942 : "+r"(src_rgb24), // %0
1883 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, argument
1886 "add %1, %0, %1 \n" // src_stride + src_rgb24
1921 : "+r"(src_rgb24), // %0
2356 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { argument
2375 : "+r"(src_rgb24), // %0
H A Drow_neon64.cc911 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { argument
921 : "+r"(src_rgb24), // %0
1856 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, argument
1858 const uint8* src_rgb24_1 = src_rgb24 + src_stride_rgb24;
1884 : "+r"(src_rgb24), // %0
2329 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int pix) { argument
2347 : "+r"(src_rgb24), // %0
H A Drow_common.cc73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { argument
76 uint8 b = src_rgb24[0];
77 uint8 g = src_rgb24[1];
78 uint8 r = src_rgb24[2];
84 src_rgb24 += 3;
H A Drow_gcc.cc268 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { argument
298 : "+r"(src_rgb24), // %0
H A Drow_win.cc385 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { argument
387 mov eax, [esp + 4] // src_rgb24
/external/libyuv/files/source/
H A Dconvert.cc790 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, argument
797 void (*RGB24ToUVRow)(const uint8* src_rgb24, int src_stride_rgb24,
799 void (*RGB24ToYRow)(const uint8* src_rgb24, uint8* dst_y, int width) =
809 if (!src_rgb24 || !dst_y || !dst_u || !dst_v ||
816 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24;
870 RGB24ToUVRow(src_rgb24, src_stride_rgb24, dst_u, dst_v, width);
871 RGB24ToYRow(src_rgb24, dst_y, width);
872 RGB24ToYRow(src_rgb24 + src_stride_rgb24, dst_y + dst_stride_y, width);
874 RGB24ToARGBRow(src_rgb24, ro
[all...]
H A Dconvert_argb.cc884 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, argument
890 if (!src_rgb24 || !dst_argb ||
897 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24;
925 RGB24ToARGBRow(src_rgb24, dst_argb, width);
926 src_rgb24 += src_stride_rgb24;
H A Drow_neon.cc792 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int width) { argument
802 : "+r"(src_rgb24), // %0
1702 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, argument
1705 "add %1, %0, %1 \n" // src_stride + src_rgb24
1739 : "+r"(src_rgb24), // %0
2164 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int width) { argument
2182 : "+r"(src_rgb24), // %0
H A Drow_neon64.cc780 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int width) { argument
790 : "+r"(src_rgb24), // %0
1667 void RGB24ToUVRow_NEON(const uint8* src_rgb24, int src_stride_rgb24, argument
1669 const uint8* src_rgb24_1 = src_rgb24 + src_stride_rgb24;
1695 : "+r"(src_rgb24), // %0
2118 void RGB24ToYRow_NEON(const uint8* src_rgb24, uint8* dst_y, int width) { argument
2136 : "+r"(src_rgb24), // %0
H A Drow_common.cc73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { argument
76 uint8 b = src_rgb24[0];
77 uint8 g = src_rgb24[1];
78 uint8 r = src_rgb24[2];
84 src_rgb24 += 3;
H A Drow_gcc.cc217 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int width) { argument
247 : "+r"(src_rgb24), // %0

Completed in 1169 milliseconds