Home
last modified time | relevance | path

Searched refs:src_raw (Results 1 – 25 of 37) sorted by relevance

12

/external/libaom/libaom/third_party/libyuv/source/
Dconvert.cc904 int RAWToI420(const uint8* src_raw, int src_stride_raw, in RAWToI420() argument
911 void (*RAWToUVRow)(const uint8* src_raw, int src_stride_raw, in RAWToI420()
913 void (*RAWToYRow)(const uint8* src_raw, uint8* dst_y, int pix) = in RAWToI420()
923 if (!src_raw || !dst_y || !dst_u || !dst_v || in RAWToI420()
930 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToI420()
984 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width); in RAWToI420()
985 RAWToYRow(src_raw, dst_y, width); in RAWToI420()
986 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width); in RAWToI420()
988 RAWToARGBRow(src_raw, row, width); in RAWToI420()
989 RAWToARGBRow(src_raw + src_stride_raw, row + kRowSize, width); in RAWToI420()
[all …]
Drow_neon64.cc931 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { in RAWToARGBRow_NEON() argument
943 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
1897 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, in RAWToUVRow_NEON() argument
1899 const uint8* src_raw_1 = src_raw + src_stride_raw; in RAWToUVRow_NEON()
1925 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2357 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix) { in RAWToYRow_NEON() argument
2375 : "+r"(src_raw), // %0 in RAWToYRow_NEON()
Drow_neon.cc950 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { in RAWToARGBRow_NEON() argument
962 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
1932 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, in RAWToUVRow_NEON() argument
1970 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2383 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix) { in RAWToYRow_NEON() argument
2402 : "+r"(src_raw), // %0 in RAWToYRow_NEON()
Dconvert_argb.cc498 int RAWToARGB(const uint8* src_raw, int src_stride_raw, in RAWToARGB() argument
504 if (!src_raw || !dst_argb || in RAWToARGB()
511 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToARGB()
539 RAWToARGBRow(src_raw, dst_argb, width); in RAWToARGB()
540 src_raw += src_stride_raw; in RAWToARGB()
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_neon.cc767 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_NEON() argument
776 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
784 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_NEON() argument
793 : "+r"(src_raw), // %0 in RAWToRGB24Row_NEON()
1596 void RAWToUVRow_NEON(const uint8_t* src_raw, in RAWToUVRow_NEON() argument
1630 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2007 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width) { in RAWToYRow_NEON() argument
2023 : "+r"(src_raw), // %0 in RAWToYRow_NEON()
Drow_neon64.cc806 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_NEON() argument
816 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
824 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_NEON() argument
833 : "+r"(src_raw), // %0 in RAWToRGB24Row_NEON()
1628 void RAWToUVRow_NEON(const uint8_t* src_raw, in RAWToUVRow_NEON() argument
1633 const uint8_t* src_raw_1 = src_raw + src_stride_raw; in RAWToUVRow_NEON()
1655 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2038 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width) { in RAWToYRow_NEON() argument
2054 : "+r"(src_raw), // %0 in RAWToYRow_NEON()
Dconvert.cc1091 int RAWToI420(const uint8_t* src_raw, in RAWToI420() argument
1103 void (*RAWToUVRow)(const uint8_t* src_raw, int src_stride_raw, uint8_t* dst_u, in RAWToI420()
1105 void (*RAWToYRow)(const uint8_t* src_raw, uint8_t* dst_y, int width) = in RAWToI420()
1116 if (!src_raw || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in RAWToI420()
1122 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToI420()
1188 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width); in RAWToI420()
1189 RAWToYRow(src_raw, dst_y, width); in RAWToI420()
1190 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width); in RAWToI420()
1192 RAWToARGBRow(src_raw, row, width); in RAWToI420()
1193 RAWToARGBRow(src_raw + src_stride_raw, row + kRowSize, width); in RAWToI420()
[all …]
Dconvert_argb.cc1215 int RAWToARGB(const uint8_t* src_raw, in RAWToARGB() argument
1224 if (!src_raw || !dst_argb || width <= 0 || height == 0) { in RAWToARGB()
1230 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToARGB()
1265 RAWToARGBRow(src_raw, dst_argb, width); in RAWToARGB()
1266 src_raw += src_stride_raw; in RAWToARGB()
Drow_gcc.cc224 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_SSSE3() argument
255 : "+r"(src_raw), // %0 in RAWToARGBRow_SSSE3()
262 void RAWToRGB24Row_SSSE3(const uint8_t* src_raw, in RAWToRGB24Row_SSSE3() argument
285 : "+r"(src_raw), // %0 in RAWToRGB24Row_SSSE3()
Drow_common.cc99 void RAWToARGBRow_C(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_C() argument
102 uint8_t r = src_raw[0]; in RAWToARGBRow_C()
103 uint8_t g = src_raw[1]; in RAWToARGBRow_C()
104 uint8_t b = src_raw[2]; in RAWToARGBRow_C()
110 src_raw += 3; in RAWToARGBRow_C()
114 void RAWToRGB24Row_C(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_C() argument
117 uint8_t r = src_raw[0]; in RAWToRGB24Row_C()
118 uint8_t g = src_raw[1]; in RAWToRGB24Row_C()
119 uint8_t b = src_raw[2]; in RAWToRGB24Row_C()
124 src_raw += 3; in RAWToRGB24Row_C()
Dplanar_functions.cc1673 int RAWToRGB24(const uint8_t* src_raw, in RAWToRGB24() argument
1682 if (!src_raw || !dst_rgb24 || width <= 0 || height == 0) { in RAWToRGB24()
1688 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToRGB24()
1723 RAWToRGB24Row(src_raw, dst_rgb24, width); in RAWToRGB24()
1724 src_raw += src_stride_raw; in RAWToRGB24()
/external/libyuv/files/source/
Drow_neon64.cc806 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_NEON() argument
816 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
824 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_NEON() argument
833 : "+r"(src_raw), // %0 in RAWToRGB24Row_NEON()
1628 void RAWToUVRow_NEON(const uint8_t* src_raw, in RAWToUVRow_NEON() argument
1633 const uint8_t* src_raw_1 = src_raw + src_stride_raw; in RAWToUVRow_NEON()
1655 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2038 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width) { in RAWToYRow_NEON() argument
2054 : "+r"(src_raw), // %0 in RAWToYRow_NEON()
Drow_neon.cc767 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_NEON() argument
776 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
784 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_NEON() argument
793 : "+r"(src_raw), // %0 in RAWToRGB24Row_NEON()
1596 void RAWToUVRow_NEON(const uint8_t* src_raw, in RAWToUVRow_NEON() argument
1630 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2007 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width) { in RAWToYRow_NEON() argument
2023 : "+r"(src_raw), // %0 in RAWToYRow_NEON()
Drow_dspr2.cc756 void RAWToARGBRow_DSPR2(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_DSPR2() argument
773 : [src_raw] "+r"(src_raw), [dst_argb] "+r"(dst_argb), in RAWToARGBRow_DSPR2()
778 uint8 r = src_raw[0]; in RAWToARGBRow_DSPR2()
779 uint8 g = src_raw[1]; in RAWToARGBRow_DSPR2()
780 uint8 b = src_raw[2]; in RAWToARGBRow_DSPR2()
Dconvert.cc1738 int RAWToI420(const uint8_t* src_raw, in RAWToI420() argument
1751 void (*RAWToUVRow)(const uint8_t* src_raw, int src_stride_raw, uint8_t* dst_u, in RAWToI420()
1753 void (*RAWToYRow)(const uint8_t* src_raw, uint8_t* dst_y, int width) = in RAWToI420()
1764 if (!src_raw || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in RAWToI420()
1770 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToI420()
1849 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width); in RAWToI420()
1850 RAWToYRow(src_raw, dst_y, width); in RAWToI420()
1851 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width); in RAWToI420()
1853 RAWToARGBRow(src_raw, row, width); in RAWToI420()
1854 RAWToARGBRow(src_raw + src_stride_raw, row + kRowSize, width); in RAWToI420()
[all …]
Dconvert_argb.cc1247 int RAWToARGB(const uint8_t* src_raw, in RAWToARGB() argument
1256 if (!src_raw || !dst_argb || width <= 0 || height == 0) { in RAWToARGB()
1262 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToARGB()
1305 RAWToARGBRow(src_raw, dst_argb, width); in RAWToARGB()
1306 src_raw += src_stride_raw; in RAWToARGB()
Drow_gcc.cc224 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_SSSE3() argument
255 : "+r"(src_raw), // %0 in RAWToARGBRow_SSSE3()
262 void RAWToRGB24Row_SSSE3(const uint8_t* src_raw, in RAWToRGB24Row_SSSE3() argument
285 : "+r"(src_raw), // %0 in RAWToRGB24Row_SSSE3()
Drow_mmi.cc64 void RAWToARGBRow_MMI(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_MMI() argument
107 : [src_ptr] "r"(src_raw), [dst_ptr] "r"(dst_argb), [mask0] "f"(mask0), in RAWToARGBRow_MMI()
112 void RAWToRGB24Row_MMI(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_MMI() argument
152 : [src_raw] "r"(src_raw), [dst_rgb24] "r"(dst_rgb24), [width] "r"(width), in RAWToRGB24Row_MMI()
Drow_common.cc99 void RAWToARGBRow_C(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_C() argument
102 uint8_t r = src_raw[0]; in RAWToARGBRow_C()
103 uint8_t g = src_raw[1]; in RAWToARGBRow_C()
104 uint8_t b = src_raw[2]; in RAWToARGBRow_C()
110 src_raw += 3; in RAWToARGBRow_C()
114 void RAWToRGB24Row_C(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_C() argument
117 uint8_t r = src_raw[0]; in RAWToRGB24Row_C()
118 uint8_t g = src_raw[1]; in RAWToRGB24Row_C()
119 uint8_t b = src_raw[2]; in RAWToRGB24Row_C()
124 src_raw += 3; in RAWToRGB24Row_C()
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Drow.h590 void RAWToYRow_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
611 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw,
623 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix);
633 void RAWToYRow_C(const uint8* src_raw, uint8* dst_y, int pix);
643 void RAWToYRow_Any_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
650 void RAWToYRow_Any_NEON(const uint8* src_raw, uint8* dst_y, int pix);
697 void RAWToUVRow_Any_NEON(const uint8* src_raw, int src_stride_raw,
719 void RAWToUVRow_C(const uint8* src_raw, int src_stride_raw,
858 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix);
871 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix);
[all …]
/external/libyuv/files/include/libyuv/
Drow.h922 void RAWToYRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_y, int width);
981 void RAWToUVRow_NEON(const uint8_t* src_raw,
1090 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width);
1130 void RAWToYRow_Any_SSSE3(const uint8_t* src_raw, uint8_t* dst_y, int width);
1885 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width);
1886 void RAWToRGB24Row_SSSE3(const uint8_t* src_raw, uint8_t* dst_rgb24, int width);
1905 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width);
1906 void RAWToARGBRow_MSA(const uint8_t* src_raw, uint8_t* dst_argb, int width);
1907 void RAWToARGBRow_MMI(const uint8_t* src_raw, uint8_t* dst_argb, int width);
1908 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width);
[all …]
Dconvert.h362 int RAWToI420(const uint8_t* src_raw,
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
Drow.h836 void RAWToYRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_y, int width);
884 void RAWToUVRow_NEON(const uint8_t* src_raw,
948 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width);
979 void RAWToYRow_Any_SSSE3(const uint8_t* src_raw, uint8_t* dst_y, int width);
1600 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width);
1601 void RAWToRGB24Row_SSSE3(const uint8_t* src_raw, uint8_t* dst_rgb24, int width);
1619 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width);
1620 void RAWToARGBRow_MSA(const uint8_t* src_raw, uint8_t* dst_argb, int width);
1621 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width);
1622 void RAWToRGB24Row_MSA(const uint8_t* src_raw, uint8_t* dst_rgb24, int width);
[all …]
Dconvert.h286 int RAWToI420(const uint8_t* src_raw,
Dconvert_argb.h538 int RAWToARGB(const uint8_t* src_raw,

12