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

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert_argb.cc576 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, argument
580 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb,
582 if (!src_argb1555 || !dst_argb ||
589 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
617 ARGB1555ToARGBRow(src_argb1555, dst_argb, width);
618 src_argb1555 += src_stride_argb1555;
H A Dconvert.cc1299 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, argument
1306 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555,
1308 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int pix) =
1318 if (!src_argb1555 || !dst_y || !dst_u || !dst_v ||
1325 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
1381 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width);
1382 ARGB1555ToYRow(src_argb1555, dst_y, width);
1383 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y,
1386 ARGB1555ToARGBRow(src_argb1555, ro
[all...]
H A Drow_neon.cc1051 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, argument
1064 : "+r"(src_argb1555), // %0
2116 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, argument
2174 : "+r"(src_argb1555), // %0
2283 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { argument
2303 : "+r"(src_argb1555), // %0
H A Drow_neon64.cc1111 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, argument
1124 : "+r"(src_argb1555), // %0
2242 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, argument
2300 : "+r"(src_argb1555), // %0
2415 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { argument
2435 : "+r"(src_argb1555), // %0
H A Drow_common.cc118 void ARGB1555ToARGBRow_C(const uint8* src_argb1555, uint8* dst_argb, argument
122 uint8 b = src_argb1555[0] & 0x1f;
123 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3);
124 uint8 r = (src_argb1555[1] & 0x7c) >> 2;
125 uint8 a = src_argb1555[1] >> 7;
131 src_argb1555 += 2;
403 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { argument
406 uint8 b = src_argb1555[0] & 0x1f;
407 uint8 g = (src_argb1555[
480 ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
H A Drow_win.cc505 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, argument
521 mov eax, [esp + 4] // src_argb1555
/external/chromium_org/third_party/libyuv/source/
H A Dconvert_argb.cc576 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, argument
580 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb,
582 if (!src_argb1555 || !dst_argb ||
589 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
617 ARGB1555ToARGBRow(src_argb1555, dst_argb, width);
618 src_argb1555 += src_stride_argb1555;
H A Dconvert.cc1284 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, argument
1291 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555,
1293 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int pix) =
1306 if (!src_argb1555 || !dst_y || !dst_u || !dst_v ||
1313 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
1363 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width);
1364 ARGB1555ToYRow(src_argb1555, dst_y, width);
1365 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y,
1368 ARGB1555ToARGBRow(src_argb1555, ro
[all...]
H A Drow_neon.cc1052 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, argument
1065 : "+r"(src_argb1555), // %0
2117 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, argument
2175 : "+r"(src_argb1555), // %0
2284 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int pix) { argument
2304 : "+r"(src_argb1555), // %0
H A Drow_common.cc118 void ARGB1555ToARGBRow_C(const uint8* src_argb1555, uint8* dst_argb, argument
122 uint8 b = src_argb1555[0] & 0x1f;
123 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3);
124 uint8 r = (src_argb1555[1] & 0x7c) >> 2;
125 uint8 a = src_argb1555[1] >> 7;
131 src_argb1555 += 2;
403 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { argument
406 uint8 b = src_argb1555[0] & 0x1f;
407 uint8 g = (src_argb1555[
480 ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
H A Drow_win.cc506 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, argument
522 mov eax, [esp + 4] // src_argb1555
/external/libyuv/files/source/
H A Dconvert_argb.cc464 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, argument
467 if (!src_argb1555 || !dst_argb ||
474 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
477 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb,
488 ARGB1555ToARGBRow(src_argb1555, dst_argb, width);
489 src_argb1555 += src_stride_argb1555;
H A Dconvert.cc1371 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, argument
1378 } else if (!src_argb1555 ||
1386 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
1395 TestReadSafe(src_argb1555, src_stride_argb1555, width, height, 2, 16)) {
1423 ARGB1555ToARGBRow(src_argb1555, row, width);
1424 ARGB1555ToARGBRow(src_argb1555 + src_stride_argb1555,
1429 src_argb1555 += src_stride_argb1555 * 2;
1435 ARGB1555ToARGBRow_C(src_argb1555, row, width);
H A Drow_win.cc375 void ARGB1555ToARGBRow_SSE2(const uint8* src_argb1555, uint8* dst_argb, argument
391 mov eax, [esp + 4] // src_argb1555

Completed in 320 milliseconds