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

/external/chromium_org/third_party/libyuv/source/
H A Dconvert_argb.cc448 int RAWToARGB(const uint8* src_raw, int src_stride_raw, argument
451 if (!src_raw || !dst_argb ||
458 src_raw = src_raw + (height - 1) * src_stride_raw;
488 RAWToARGBRow(src_raw, dst_argb, width);
489 src_raw += src_stride_raw;
H A Dconvert.cc1050 int RAWToI420(const uint8* src_raw, int src_stride_raw, argument
1055 if (!src_raw || !dst_y || !dst_u || !dst_v ||
1062 src_raw = src_raw + (height - 1) * src_stride_raw;
1067 void (*RAWToUVRow)(const uint8* src_raw, int src_stride_raw,
1069 void (*RAWToYRow)(const uint8* src_raw, uint8* dst_y, int pix) =
1126 RAWToUVRow(src_raw, src_stride_raw, dst_u, dst_v, width);
1127 RAWToYRow(src_raw, dst_y, width);
1128 RAWToYRow(src_raw + src_stride_raw, dst_y + dst_stride_y, width);
1130 RAWToARGBRow(src_raw, ro
[all...]
H A Drow_neon.cc881 void RAWToARGBRow_NEON(const uint8* src_raw, uint8* dst_argb, int pix) { argument
891 : "+r"(src_raw), // %0
1798 void RAWToUVRow_NEON(const uint8* src_raw, int src_stride_raw, argument
1801 "add %1, %0, %1 \n" // src_stride + src_raw
1830 : "+r"(src_raw), // %0
2211 void RAWToYRow_NEON(const uint8* src_raw, uint8* dst_y, int pix) { argument
2228 : "+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.cc244 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, argument
247 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.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/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);

Completed in 268 milliseconds