Searched refs:src_raw (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert.cc1067 int RAWToI420(const uint8* src_raw, int src_stride_raw, argument
1074 void (*RAWToUVRow)(const uint8* src_raw, int src_stride_raw,
1076 void (*RAWToYRow)(const uint8* src_raw, uint8* dst_y, int pix) =
1086 if (!src_raw || !dst_y || !dst_u || !dst_v ||
1093 src_raw = src_raw + (height - 1) * src_stride_raw;
1148 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width);
1149 RAWToYRow(src_raw, dst_y, width);
1150 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width);
1152 RAWToARGBRow(src_raw, ro
[all...]
H A Dconvert_argb.cc476 int RAWToARGB(const uint8* src_raw, int src_stride_raw, argument
482 if (!src_raw || !dst_argb ||
489 src_raw = src_raw + (height - 1) * src_stride_raw;
517 RAWToARGBRow(src_raw, dst_argb, width);
518 src_raw += src_stride_raw;
H A Drow_neon.cc972 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { argument
984 : "+r"(src_raw), // %0
1996 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, argument
1999 "add %1, %0, %1 \n" // src_stride + src_raw
2034 : "+r"(src_raw), // %0
2447 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix) { argument
2466 : "+r"(src_raw), // %0
H A Drow_neon64.cc1027 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { argument
1040 : "+r"(src_raw), // %0
2118 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, argument
2121 "add %1, %0, %1 \n" // src_stride + src_raw
2156 : "+r"(src_raw), // %0
2591 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix) { argument
2610 : "+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;
H A Drow_posix.cc345 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) { argument
375 : "+r"(src_raw), // %0
H A Drow_win.cc407 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, argument
410 mov eax, [esp + 4] // src_raw
/external/chromium_org/third_party/libyuv/source/
H A Dconvert.cc1060 int RAWToI420(const uint8* src_raw, int src_stride_raw, argument
1067 void (*RAWToUVRow)(const uint8* src_raw, int src_stride_raw,
1069 void (*RAWToYRow)(const uint8* src_raw, uint8* dst_y, int pix) =
1082 if (!src_raw || !dst_y || !dst_u || !dst_v ||
1089 src_raw = src_raw + (height - 1) * src_stride_raw;
1139 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width);
1140 RAWToYRow(src_raw, dst_y, width);
1141 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width);
1143 RAWToARGBRow(src_raw, ro
[all...]
H A Dconvert_argb.cc476 int RAWToARGB(const uint8* src_raw, int src_stride_raw, argument
482 if (!src_raw || !dst_argb ||
489 src_raw = src_raw + (height - 1) * src_stride_raw;
517 RAWToARGBRow(src_raw, dst_argb, width);
518 src_raw += src_stride_raw;
H A Drow_neon.cc973 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { argument
985 : "+r"(src_raw), // %0
1997 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, argument
2000 "add %1, %0, %1 \n" // src_stride + src_raw
2035 : "+r"(src_raw), // %0
2448 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix) { argument
2467 : "+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;
H A Drow_posix.cc345 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) { argument
375 : "+r"(src_raw), // %0
H A Drow_win.cc408 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, argument
411 mov eax, [esp + 4] // src_raw
/external/libyuv/files/source/
H A Drow_neon.cc619 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { argument
629 : "+r"(src_raw), // %0
H A Dconvert_argb.cc365 int RAWToARGB(const uint8* src_raw, int src_stride_raw, argument
368 if (!src_raw || !dst_argb ||
375 src_raw = src_raw + (height - 1) * src_stride_raw;
378 void (*RAWToARGBRow)(const uint8* src_raw, uint8* dst_argb, int pix) =
389 RAWToARGBRow(src_raw, dst_argb, width);
390 src_raw += src_stride_raw;
H A Dconvert.cc1229 int RAWToI420(const uint8* src_raw, int src_stride_raw, argument
1236 } else if (!src_raw ||
1244 src_raw = src_raw + (height - 1) * src_stride_raw;
1253 TestReadSafe(src_raw, src_stride_raw, width, height, 3, 48)) {
1281 RAWToARGBRow(src_raw, row, width);
1282 RAWToARGBRow(src_raw + src_stride_raw, row + kMaxStride, width);
1286 src_raw += src_stride_raw * 2;
1292 RAWToARGBRow_C(src_raw, row, width);
H A Drow_common.cc84 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { argument
86 uint8 r = src_raw[0];
87 uint8 g = src_raw[1];
88 uint8 b = src_raw[2];
94 src_raw += 3;
H A Drow_posix.cc287 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) { argument
317 : "+r"(src_raw), // %0
H A Drow_win.cc277 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, argument
280 mov eax, [esp + 4] // src_raw
/external/chromium_org/third_party/skia/src/opts/
H A DSkBlitRow_opts_arm_neon.cpp756 uint8x8_t src_raw, dst_raw, dst_final; local
767 src_raw = vreinterpret_u8_u32(vld1_u32(src));
786 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
797 dst_final = vadd_u8(src_raw, dst_cooked);
864 uint8x8_t src_raw, dst_raw, dst_final; local
884 src_raw = vreinterpret_u8_u32(vld1_u32(src));
893 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
906 dst_final = vadd_u8(src_raw, dst_cooked);
/external/skia/src/opts/
H A DSkBlitRow_opts_arm_neon.cpp658 uint8x8_t src_raw, dst_raw, dst_final; local
669 src_raw = vreinterpret_u8_u32(vld1_u32(src));
688 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
699 dst_final = vadd_u8(src_raw, dst_cooked);
766 uint8x8_t src_raw, dst_raw, dst_final; local
786 src_raw = vreinterpret_u8_u32(vld1_u32(src));
795 alpha_narrow = vtbl1_u8(src_raw, alpha_mask);
808 dst_final = vadd_u8(src_raw, dst_cooked);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
H A Drow.h653 void RAWToYRow_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
660 void RAWToYRow_Unaligned_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
681 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw,
693 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix);
703 void RAWToYRow_C(const uint8* src_raw, uint8* dst_y, int pix);
713 void RAWToYRow_Any_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
720 void RAWToYRow_Any_NEON(const uint8* src_raw, uint8* dst_y, int pix);
777 void RAWToUVRow_Any_NEON(const uint8* src_raw, int src_stride_raw,
799 void RAWToUVRow_C(const uint8* src_raw, int src_stride_raw,
936 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint
[all...]
/external/chromium_org/third_party/libyuv/include/libyuv/
H A Drow.h561 void RAWToYRow_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
568 void RAWToYRow_Unaligned_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
589 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw,
601 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix);
611 void RAWToYRow_C(const uint8* src_raw, uint8* dst_y, int pix);
621 void RAWToYRow_Any_SSSE3(const uint8* src_raw, uint8* dst_y, int pix);
628 void RAWToYRow_Any_NEON(const uint8* src_raw, uint8* dst_y, int pix);
685 void RAWToUVRow_Any_NEON(const uint8* src_raw, int src_stride_raw,
707 void RAWToUVRow_C(const uint8* src_raw, int src_stride_raw,
844 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint
[all...]

Completed in 405 milliseconds