Searched defs:src_stride_argb4444 (Results 1 - 7 of 7) sorted by relevance
/external/libvpx/libvpx/third_party/libyuv/source/ |
H A D | convert_argb.cc | 664 int ARGB4444ToARGB(const uint8* src_argb4444, int src_stride_argb4444, argument 677 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; 678 src_stride_argb4444 = -src_stride_argb4444; 681 if (src_stride_argb4444 == width * 2 && 685 src_stride_argb4444 = dst_stride_argb = 0; 714 src_argb4444 += src_stride_argb4444;
|
H A D | convert.cc | 1264 int ARGB4444ToI420(const uint8* src_argb4444, int src_stride_argb4444, argument 1271 void (*ARGB4444ToUVRow)(const uint8* src_argb4444, int src_stride_argb4444, 1290 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; 1291 src_stride_argb4444 = -src_stride_argb4444; 1352 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); 1354 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, 1358 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, 1364 src_argb4444 += src_stride_argb4444 * 2;
|
H A D | row_neon.cc | 2122 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, argument 2181 "+r"(src_stride_argb4444), // %1
|
H A D | row_neon64.cc | 2086 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, argument 2088 const uint8* src_argb4444_1 = src_argb4444 + src_stride_argb4444;
|
H A D | row_common.cc | 584 void ARGB4444ToUVRow_C(const uint8* src_argb4444, int src_stride_argb4444, argument 586 const uint8* next_argb4444 = src_argb4444 + src_stride_argb4444;
|
/external/libyuv/files/source/ |
H A D | convert_argb.cc | 497 int ARGB4444ToARGB(const uint8* src_argb4444, int src_stride_argb4444, argument 507 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; 508 src_stride_argb4444 = -src_stride_argb4444; 522 src_argb4444 += src_stride_argb4444;
|
H A D | convert.cc | 1443 int ARGB4444ToI420(const uint8* src_argb4444, int src_stride_argb4444, argument 1458 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; 1459 src_stride_argb4444 = -src_stride_argb4444; 1467 TestReadSafe(src_argb4444, src_stride_argb4444, width, height, 2, 16)) { 1496 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, 1501 src_argb4444 += src_stride_argb4444 * 2;
|
Completed in 954 milliseconds