Home
last modified time | relevance | path

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

12

/external/libaom/libaom/third_party/libyuv/source/
Drow_neon.cc811 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_NEON() argument
820 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
828 void RAWToRGBARow_NEON(const uint8_t* src_raw, uint8_t* dst_rgba, int width) { in RAWToRGBARow_NEON() argument
837 : "+r"(src_raw), // %0 in RAWToRGBARow_NEON()
844 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_NEON() argument
853 : "+r"(src_raw), // %0 in RAWToRGB24Row_NEON()
1677 void RAWToUVRow_NEON(const uint8_t* src_raw, in RAWToUVRow_NEON() argument
1711 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2079 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width) { in RAWToYRow_NEON() argument
2095 : "+r"(src_raw), // %0 in RAWToYRow_NEON()
[all …]
Drow_neon64.cc923 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_NEON() argument
934 : "+r"(src_raw), // %0 in RAWToARGBRow_NEON()
942 void RAWToRGBARow_NEON(const uint8_t* src_raw, uint8_t* dst_rgba, int width) { in RAWToRGBARow_NEON() argument
953 : "+r"(src_raw), // %0 in RAWToRGBARow_NEON()
961 void RAWToRGB24Row_NEON(const uint8_t* src_raw, uint8_t* dst_rgb24, int width) { in RAWToRGB24Row_NEON() argument
971 : "+r"(src_raw), // %0 in RAWToRGB24Row_NEON()
1821 void RAWToUVRow_NEON(const uint8_t* src_raw, in RAWToUVRow_NEON() argument
1826 const uint8_t* src_raw_1 = src_raw + src_stride_raw; in RAWToUVRow_NEON()
1850 : "+r"(src_raw), // %0 in RAWToUVRow_NEON()
2213 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width) { in RAWToYRow_NEON() argument
[all …]
Dconvert.cc1634 int RAWToI420(const uint8_t* src_raw, in RAWToI420() argument
1647 void (*RAWToUVRow)(const uint8_t* src_raw, int src_stride_raw, uint8_t* dst_u, in RAWToI420()
1649 void (*RAWToYRow)(const uint8_t* src_raw, uint8_t* dst_y, int width) = in RAWToI420()
1660 if (!src_raw || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) { in RAWToI420()
1666 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToI420()
1749 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width); in RAWToI420()
1750 RAWToYRow(src_raw, dst_y, width); in RAWToI420()
1751 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width); in RAWToI420()
1753 RAWToARGBRow(src_raw, row, width); in RAWToI420()
1754 RAWToARGBRow(src_raw + src_stride_raw, row + kRowSize, width); in RAWToI420()
[all …]
Drow_common.cc113 void RAWToARGBRow_C(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_C() argument
116 uint8_t r = src_raw[0]; in RAWToARGBRow_C()
117 uint8_t g = src_raw[1]; in RAWToARGBRow_C()
118 uint8_t b = src_raw[2]; in RAWToARGBRow_C()
124 src_raw += 3; in RAWToARGBRow_C()
128 void RAWToRGBARow_C(const uint8_t* src_raw, uint8_t* dst_rgba, int width) { in RAWToRGBARow_C() argument
131 uint8_t r = src_raw[0]; in RAWToRGBARow_C()
132 uint8_t g = src_raw[1]; in RAWToRGBARow_C()
133 uint8_t b = src_raw[2]; in RAWToRGBARow_C()
139 src_raw += 3; in RAWToRGBARow_C()
[all …]
Dconvert_argb.cc1866 int RAWToARGB(const uint8_t* src_raw, in RAWToARGB() argument
1875 if (!src_raw || !dst_argb || width <= 0 || height == 0) { in RAWToARGB()
1881 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToARGB()
1924 RAWToARGBRow(src_raw, dst_argb, width); in RAWToARGB()
1925 src_raw += src_stride_raw; in RAWToARGB()
1933 int RAWToRGBA(const uint8_t* src_raw, in RAWToRGBA() argument
1942 if (!src_raw || !dst_rgba || width <= 0 || height == 0) { in RAWToRGBA()
1948 src_raw = src_raw + (height - 1) * src_stride_raw; in RAWToRGBA()
1975 RAWToRGBARow(src_raw, dst_rgba, width); in RAWToRGBA()
1976 src_raw += src_stride_raw; in RAWToRGBA()
Drow_gcc.cc229 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width) { in RAWToARGBRow_SSSE3() argument
260 : "+r"(src_raw), // %0 in RAWToARGBRow_SSSE3()
268 void RAWToRGBARow_SSSE3(const uint8_t* src_raw, uint8_t* dst_rgba, int width) { in RAWToRGBARow_SSSE3() argument
299 : "+r"(src_raw), // %0 in RAWToRGBARow_SSSE3()
306 void RAWToRGB24Row_SSSE3(const uint8_t* src_raw, in RAWToRGB24Row_SSSE3() argument
329 : "+r"(src_raw), // %0 in RAWToRGB24Row_SSSE3()
/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()
/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()
/external/libaom/libaom/third_party/libyuv/include/libyuv/
Dconvert.h364 int RAWToI420(const uint8_t* src_raw,
425 int RAWToJ400(const uint8_t* src_raw,
Drow.h980 void RAWToYRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_y, int width);
981 void RAWToYJRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_y, int width);
983 void RAWToYJRow_AVX2(const uint8_t* src_raw, uint8_t* dst_y, int width);
1043 void RAWToUVRow_NEON(const uint8_t* src_raw,
1153 void RAWToYRow_NEON(const uint8_t* src_raw, uint8_t* dst_y, int width);
1154 void RAWToYJRow_NEON(const uint8_t* src_raw, uint8_t* dst_yj, int width);
2021 void RAWToARGBRow_SSSE3(const uint8_t* src_raw, uint8_t* dst_argb, int width);
2022 void RAWToRGBARow_SSSE3(const uint8_t* src_raw, uint8_t* dst_rgba, int width);
2023 void RAWToRGB24Row_SSSE3(const uint8_t* src_raw, uint8_t* dst_rgb24, int width);
2042 void RAWToARGBRow_NEON(const uint8_t* src_raw, uint8_t* dst_argb, int width);
[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,
/external/libgav1/libgav1/src/dsp/arm/
Dloop_filter_neon.cc1658 uint16x8_t src_raw[4] = {vld1q_u16(dst_0), vld1q_u16(dst_1), vld1q_u16(dst_2), in Vertical6_NEON() local
1660 Transpose4x8(src_raw); in Vertical6_NEON()
1663 vget_low_u16(src_raw[0]), vget_low_u16(src_raw[1]), in Vertical6_NEON()
1664 vget_low_u16(src_raw[2]), vget_low_u16(src_raw[3]), in Vertical6_NEON()
1665 vget_high_u16(src_raw[0]), vget_high_u16(src_raw[1]), in Vertical6_NEON()

12