Searched defs:src_raw (Results 1 - 17 of 17) sorted by relevance

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert.cc867 int RAWToI420(const uint8* src_raw, int src_stride_raw, argument
874 void (*RAWToUVRow)(const uint8* src_raw, int src_stride_raw,
876 void (*RAWToYRow)(const uint8* src_raw, uint8* dst_y, int width) =
886 if (!src_raw || !dst_y || !dst_u || !dst_v ||
893 src_raw = src_raw + (height - 1) * src_stride_raw;
947 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width);
948 RAWToYRow(src_raw, dst_y, width);
949 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width);
951 RAWToARGBRow(src_raw, ro
[all...]
H A Dconvert_argb.cc934 int RAWToARGB(const uint8* src_raw, int src_stride_raw, argument
940 if (!src_raw || !dst_argb ||
947 src_raw = src_raw + (height - 1) * src_stride_raw;
975 RAWToARGBRow(src_raw, dst_argb, width);
976 src_raw += src_stride_raw;
H A Dplanar_functions.cc1239 int RAWToRGB24(const uint8* src_raw, int src_stride_raw, argument
1245 if (!src_raw || !dst_rgb24 ||
1252 src_raw = src_raw + (height - 1) * src_stride_raw;
1280 RAWToRGB24Row(src_raw, dst_rgb24, width);
1281 src_raw += src_stride_raw;
H A Drow_neon.cc810 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int width) { argument
821 : "+r"(src_raw), // %0
829 void RAWToRGB24Row_NEON(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
839 : "+r"(src_raw), // %0
1750 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, argument
1753 "add %1, %0, %1 \n" // src_stride + src_raw
1787 : "+r"(src_raw), // %0
2190 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int width) { argument
2208 : "+r"(src_raw), // %0
H A Drow_neon64.cc798 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int width) { argument
810 : "+r"(src_raw), // %0
818 void RAWToRGB24Row_NEON(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
829 : "+r"(src_raw), // %0
1706 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, argument
1708 const uint8* src_raw_1 = src_raw + src_stride_raw;
1734 : "+r"(src_raw), // %0
2144 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int width) { argument
2162 : "+r"(src_raw), // %0
H A Drow_common.cc88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { argument
91 uint8 r = src_raw[0];
92 uint8 g = src_raw[1];
93 uint8 b = src_raw[2];
99 src_raw += 3;
103 void RAWToRGB24Row_C(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
106 uint8 r = src_raw[0];
107 uint8 g = src_raw[1];
108 uint8 b = src_raw[2];
113 src_raw
[all...]
H A Drow_gcc.cc255 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int width) { argument
285 : "+r"(src_raw), // %0
293 void RAWToRGB24Row_SSSE3(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
313 : "+r"(src_raw), // %0
/external/libyuv/files/source/
H A Dconvert.cc1066 int RAWToI420(const uint8* src_raw, argument
1078 void (*RAWToUVRow)(const uint8* src_raw, int src_stride_raw, uint8* dst_u,
1080 void (*RAWToYRow)(const uint8* src_raw, uint8* dst_y, int width) =
1090 if (!src_raw || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
1096 src_raw = src_raw + (height - 1) * src_stride_raw;
1162 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width);
1163 RAWToYRow(src_raw, dst_y, width);
1164 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width);
1166 RAWToARGBRow(src_raw, ro
[all...]
H A Dconvert_argb.cc1008 int RAWToARGB(const uint8* src_raw, argument
1017 if (!src_raw || !dst_argb || width <= 0 || height == 0) {
1023 src_raw = src_raw + (height - 1) * src_stride_raw;
1066 RAWToARGBRow(src_raw, dst_argb, width);
1067 src_raw += src_stride_raw;
H A Drow_dspr2.cc756 void RAWToARGBRow_DSPR2(const uint8* src_raw, uint8* dst_argb, int width) { argument
764 "ulw %[tmp_t1], 0(%[src_raw]) \n"
766 "addiu %[src_raw], %[src_raw], 3 \n"
773 : [src_raw] "+r"(src_raw), [dst_argb] "+r"(dst_argb),
778 uint8 r = src_raw[0];
779 uint8 g = src_raw[1];
780 uint8 b = src_raw[2];
H A Dplanar_functions.cc1480 int RAWToRGB24(const uint8* src_raw, argument
1489 if (!src_raw || !dst_rgb24 || width <= 0 || height == 0) {
1495 src_raw = src_raw + (height - 1) * src_stride_raw;
1530 RAWToRGB24Row(src_raw, dst_rgb24, width);
1531 src_raw += src_stride_raw;
H A Drow_neon.cc773 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int width) { argument
784 : "+r"(src_raw), // %0
792 void RAWToRGB24Row_NEON(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
802 : "+r"(src_raw), // %0
1696 void RAWToUVRow_NEON(const uint8* src_raw, argument
1702 "add %1, %0, %1 \n" // src_stride + src_raw
1736 : "+r"(src_raw), // %0
2148 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int width) { argument
2166 : "+r"(src_raw), // %0
H A Drow_neon64.cc768 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int width) { argument
780 : "+r"(src_raw), // %0
788 void RAWToRGB24Row_NEON(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
799 : "+r"(src_raw), // %0
1671 void RAWToUVRow_NEON(const uint8* src_raw, argument
1676 const uint8* src_raw_1 = src_raw + src_stride_raw;
1702 : "+r"(src_raw), // %0
2121 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int width) { argument
2139 : "+r"(src_raw), // %0
H A Drow_common.cc88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { argument
91 uint8 r = src_raw[0];
92 uint8 g = src_raw[1];
93 uint8 b = src_raw[2];
99 src_raw += 3;
103 void RAWToRGB24Row_C(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
106 uint8 r = src_raw[0];
107 uint8 g = src_raw[1];
108 uint8 b = src_raw[2];
113 src_raw
[all...]
H A Drow_gcc.cc222 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int width) { argument
252 : "+r"(src_raw), // %0
260 void RAWToRGB24Row_SSSE3(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
280 : "+r"(src_raw), // %0
H A Drow_msa.cc1620 void RAWToARGBRow_MSA(const uint8* src_raw, uint8* dst_argb, int width) { argument
1629 src0 = (v16u8)__msa_ld_b((v16i8*)src_raw, 0);
1630 src1 = (v16u8)__msa_ld_b((v16i8*)src_raw, 16);
1631 src2 = (v16u8)__msa_ld_b((v16i8*)src_raw, 32);
1640 src_raw += 48;
2928 void RAWToRGB24Row_MSA(const uint8* src_raw, uint8* dst_rgb24, int width) { argument
2938 src0 = (v16u8)__msa_ld_b((v16i8*)src_raw, 0);
2939 src1 = (v16u8)__msa_ld_b((v16i8*)src_raw, 16);
2940 src2 = (v16u8)__msa_ld_b((v16i8*)src_raw, 32);
2948 src_raw
[all...]
/external/vixl/test/aarch64/
H A Dtest-assembler-aarch64.cc16373 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
16375 uint64_t src_tagged = CPU::SetPointerTag(src_raw, src_tag);
16584 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
16586 uint64_t src_tagged = CPU::SetPointerTag(src_raw, src_tag);
16755 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
16757 uint64_t src_tagged = CPU::SetPointerTag(src_raw, src_tag);
16921 uint64_t src_raw = reinterpret_cast<uint64_t>(src); local
16923 uint64_t src_tagged = CPU::SetPointerTag(src_raw, src_tag);

Completed in 400 milliseconds