Searched defs:src_argb (Results 1 - 5 of 5) sorted by relevance

/external/libyuv/files/source/
H A Drow_posix.cc36 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { argument
58 : "+r"(src_argb), // %0
H A Drow_table.cc337 void RGB24ToYRow_C(const uint8* src_argb, uint8* dst_y, int pix) { argument
339 BG24ToARGBRow_C(src_argb, row, pix);
343 void RAWToYRow_C(const uint8* src_argb, uint8* dst_y, int pix) { argument
345 RAWToARGBRow_C(src_argb, row, pix);
349 void RGB24ToUVRow_C(const uint8* src_argb, int src_stride_argb, argument
352 BG24ToARGBRow_C(src_argb, row, pix);
353 BG24ToARGBRow_C(src_argb + src_stride_argb, row + kMaxStride, pix);
357 void RAWToUVRow_C(const uint8* src_argb, int src_stride_argb, argument
360 RAWToARGBRow_C(src_argb, row, pix);
361 RAWToARGBRow_C(src_argb
416 RGB24ToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) argument
422 RAWToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) argument
432 RGB24ToUVRow_SSSE3(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int pix) argument
440 RAWToUVRow_SSSE3(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int pix) argument
450 RGB24ToUVRow_SSSE3(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int pix) argument
458 RAWToUVRow_SSSE3(const uint8* src_argb, int src_stride_argb, uint8* dst_u, uint8* dst_v, int pix) argument
[all...]
H A Dformat_conversion.cc28 static void ARGBToBayerRow_SSSE3(const uint8* src_argb, argument
31 mov eax, [esp + 4] // src_argb
53 static void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer,
66 : "+r"(src_argb), // %0
75 static void ARGBToBayerRow_C(const uint8* src_argb, argument
81 dst_bayer[0] = src_argb[index0];
82 dst_bayer[1] = src_argb[index1];
83 src_argb += 8;
87 dst_bayer[0] = src_argb[index0];
109 void (*ARGBToBayerRow)(const uint8* src_argb,
[all...]
H A Drow_win.cc79 void ARGBToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { argument
81 mov eax, [esp + 4] /* src_argb */
112 void BGRAToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { argument
114 mov eax, [esp + 4] /* src_argb */
145 void ABGRToYRow_SSSE3(const uint8* src_argb, uint8* dst_y, int pix) { argument
147 mov eax, [esp + 4] /* src_argb */
183 mov eax, [esp + 8 + 4] // src_argb
247 mov eax, [esp + 8 + 4] // src_argb
311 mov eax, [esp + 8 + 4] // src_argb
H A Dplanar_functions.cc1484 int ARGBToI400(const uint8* src_argb, int src_stride_argb, argument
1489 src_argb = src_argb + (height - 1) * src_stride_argb;
1492 void (*ARGBToYRow)(const uint8* src_argb, uint8* dst_y, int pix);
1496 IS_ALIGNED(src_argb, 16) && (src_stride_argb % 16 == 0) &&
1506 ARGBToYRow(src_argb, dst_y, width);
1507 src_argb += src_stride_argb;

Completed in 83 milliseconds