Home
last modified time | relevance | path

Searched refs:src_stride_argb4444 (Results 1 – 23 of 23) sorted by relevance

/external/libaom/libaom/third_party/libyuv/source/
Dconvert_argb.cc664 int ARGB4444ToARGB(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToARGB() argument
677 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
678 src_stride_argb4444 = -src_stride_argb4444; in ARGB4444ToARGB()
681 if (src_stride_argb4444 == width * 2 && in ARGB4444ToARGB()
685 src_stride_argb4444 = dst_stride_argb = 0; in ARGB4444ToARGB()
714 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
Dconvert.cc1264 int ARGB4444ToI420(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420() argument
1271 void (*ARGB4444ToUVRow)(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
1290 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
1291 src_stride_argb4444 = -src_stride_argb4444; in ARGB4444ToI420()
1352 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
1354 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
1358 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
1364 src_argb4444 += src_stride_argb4444 * 2; in ARGB4444ToI420()
Drow_neon.cc2122 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
2181 "+r"(src_stride_argb4444), // %1 in ARGB4444ToUVRow_NEON()
Drow_neon64.cc2086 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
2088 const uint8* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
Drow_common.cc584 void ARGB4444ToUVRow_C(const uint8* src_argb4444, int src_stride_argb4444, in ARGB4444ToUVRow_C() argument
586 const uint8* next_argb4444 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_C()
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert.cc1503 int src_stride_argb4444, in ARGB4444ToI420() argument
1514 void (*ARGB4444ToUVRow)(const uint8_t* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
1535 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
1536 src_stride_argb4444 = -src_stride_argb4444; in ARGB4444ToI420()
1620 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
1622 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
1626 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
1632 src_argb4444 += src_stride_argb4444 * 2; in ARGB4444ToI420()
Dconvert_argb.cc1409 int src_stride_argb4444, in ARGB4444ToARGB() argument
1423 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
1424 src_stride_argb4444 = -src_stride_argb4444; in ARGB4444ToARGB()
1427 if (src_stride_argb4444 == width * 2 && dst_stride_argb == width * 4) { in ARGB4444ToARGB()
1430 src_stride_argb4444 = dst_stride_argb = 0; in ARGB4444ToARGB()
1467 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
Drow_neon.cc1775 int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
1830 "+r"(src_stride_argb4444), // %1 in ARGB4444ToUVRow_NEON()
Drow_neon64.cc1804 int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
1808 const uint8_t* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
Drow_common.cc668 int src_stride_argb4444, in ARGB4444ToUVRow_C() argument
672 const uint8_t* next_argb4444 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_C()
/external/libyuv/files/source/
Dconvert.cc2198 int src_stride_argb4444, in ARGB4444ToI420() argument
2209 void (*ARGB4444ToUVRow)(const uint8_t* src_argb4444, int src_stride_argb4444, in ARGB4444ToI420()
2230 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToI420()
2231 src_stride_argb4444 = -src_stride_argb4444; in ARGB4444ToI420()
2338 ARGB4444ToUVRow(src_argb4444, src_stride_argb4444, dst_u, dst_v, width); in ARGB4444ToI420()
2340 ARGB4444ToYRow(src_argb4444 + src_stride_argb4444, dst_y + dst_stride_y, in ARGB4444ToI420()
2344 ARGB4444ToARGBRow(src_argb4444 + src_stride_argb4444, row + kRowSize, in ARGB4444ToI420()
2350 src_argb4444 += src_stride_argb4444 * 2; in ARGB4444ToI420()
Dconvert_argb.cc1465 int src_stride_argb4444, in ARGB4444ToARGB() argument
1479 src_argb4444 = src_argb4444 + (height - 1) * src_stride_argb4444; in ARGB4444ToARGB()
1480 src_stride_argb4444 = -src_stride_argb4444; in ARGB4444ToARGB()
1483 if (src_stride_argb4444 == width * 2 && dst_stride_argb == width * 4) { in ARGB4444ToARGB()
1486 src_stride_argb4444 = dst_stride_argb = 0; in ARGB4444ToARGB()
1531 src_argb4444 += src_stride_argb4444; in ARGB4444ToARGB()
Drow_neon.cc1775 int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
1830 "+r"(src_stride_argb4444), // %1 in ARGB4444ToUVRow_NEON()
Drow_neon64.cc1804 int src_stride_argb4444, in ARGB4444ToUVRow_NEON() argument
1808 const uint8_t* src_argb4444_1 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_NEON()
Drow_mmi.cc3658 int src_stride_argb4444, in ARGB4444ToUVRow_MMI() argument
3904 [next_argb4444] "r"(src_stride_argb4444), [dst_u] "r"(dst_u), in ARGB4444ToUVRow_MMI()
Drow_common.cc668 int src_stride_argb4444, in ARGB4444ToUVRow_C() argument
672 const uint8_t* next_argb4444 = src_argb4444 + src_stride_argb4444; in ARGB4444ToUVRow_C()
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Dconvert.h326 int src_stride_argb4444,
Dconvert_argb.h566 int src_stride_argb4444,
Drow.h900 int src_stride_argb4444,
1235 int src_stride_argb4444,
/external/libyuv/files/include/libyuv/
Dconvert.h402 int src_stride_argb4444,
Dconvert_argb.h600 int src_stride_argb4444,
Drow.h997 int src_stride_argb4444,
1082 int src_stride_argb4444,
1454 int src_stride_argb4444,
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Drow.h617 void ARGB4444ToUVRow_NEON(const uint8* src_argb4444, int src_stride_argb4444,
705 int src_stride_argb4444,
725 void ARGB4444ToUVRow_C(const uint8* src_argb4444, int src_stride_argb4444,