Searched refs:src_rgb24 (Results 1 - 7 of 7) sorted by relevance

/external/libyuv/files/source/
H A Drow_neon.cc600 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix) { argument
609 : "+r"(src_rgb24), // %0
H A Dconvert_argb.cc398 int RGB24ToARGB(const uint8* src_rgb24, int src_stride_rgb24, argument
401 if (!src_rgb24 || !dst_argb ||
408 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24;
411 void (*RGB24ToARGBRow)(const uint8* src_rgb24, uint8* dst_argb, int pix) =
422 RGB24ToARGBRow(src_rgb24, dst_argb, width);
423 src_rgb24 += src_stride_rgb24;
H A Dconvert.cc1158 int RGB24ToI420(const uint8* src_rgb24, int src_stride_rgb24, argument
1165 } else if (!src_rgb24 ||
1173 src_rgb24 = src_rgb24 + (height - 1) * src_stride_rgb24;
1182 TestReadSafe(src_rgb24, src_stride_rgb24, width, height, 3, 48)) {
1210 RGB24ToARGBRow(src_rgb24, row, width);
1211 RGB24ToARGBRow(src_rgb24 + src_stride_rgb24, row + kMaxStride, width);
1215 src_rgb24 += src_stride_rgb24 * 2;
1221 RGB24ToARGBRow_C(src_rgb24, row, width);
H A Drow_common.cc70 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { argument
72 uint8 b = src_rgb24[0];
73 uint8 g = src_rgb24[1];
74 uint8 r = src_rgb24[2];
80 src_rgb24 += 3;
H A Drow_posix.cc246 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { argument
276 : "+r"(src_rgb24), // %0
H A Drow_win.cc238 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { argument
240 mov eax, [esp + 4] // src_rgb24
/external/libyuv/files/include/libyuv/
H A Drow.h291 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix);
292 void RAWToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix);
300 void RGB24ToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix);
301 void RAWToARGBRow_NEON(const uint8* src_rgb24, uint8* dst_argb, int pix);
306 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix);
307 void RAWToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int pix);

Completed in 864 milliseconds