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

/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert.cc1103 int ARGB1555ToI420(const uint8* src_argb1555, int src_stride_argb1555, argument
1110 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555,
1112 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int width) =
1122 if (!src_argb1555 || !dst_y || !dst_u || !dst_v ||
1129 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
1191 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width);
1192 ARGB1555ToYRow(src_argb1555, dst_y, width);
1193 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y,
1196 ARGB1555ToARGBRow(src_argb1555, ro
[all...]
H A Dconvert_argb.cc1042 int ARGB1555ToARGB(const uint8* src_argb1555, int src_stride_argb1555, argument
1046 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb,
1048 if (!src_argb1555 || !dst_argb ||
1055 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
1091 ARGB1555ToARGBRow(src_argb1555, dst_argb, width);
1092 src_argb1555 += src_stride_argb1555;
H A Drow_neon.cc905 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, argument
917 : "+r"(src_argb1555), // %0
1868 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, argument
1925 : "+r"(src_argb1555), // %0
2032 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { argument
2051 : "+r"(src_argb1555), // %0
H A Drow_neon64.cc906 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, uint8* dst_argb, argument
918 : "+r"(src_argb1555), // %0
1820 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, int src_stride_argb1555, argument
1822 const uint8* src_argb1555_1 = src_argb1555 + src_stride_argb1555;
1876 : "+r"(src_argb1555), // %0
1986 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { argument
2005 : "+r"(src_argb1555), // %0
H A Drow_common.cc132 void ARGB1555ToARGBRow_C(const uint8* src_argb1555, uint8* dst_argb, argument
136 uint8 b = src_argb1555[0] & 0x1f;
137 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3);
138 uint8 r = (src_argb1555[1] & 0x7c) >> 2;
139 uint8 a = src_argb1555[1] >> 7;
145 src_argb1555 += 2;
451 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { argument
454 uint8 b = src_argb1555[0] & 0x1f;
455 uint8 g = (src_argb1555[
528 ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
/external/libyuv/files/source/
H A Dconvert.cc1341 int ARGB1555ToI420(const uint8* src_argb1555, argument
1353 void (*ARGB1555ToUVRow)(const uint8* src_argb1555, int src_stride_argb1555,
1356 void (*ARGB1555ToYRow)(const uint8* src_argb1555, uint8* dst_y, int width) =
1366 if (!src_argb1555 || !dst_y || !dst_u || !dst_v || width <= 0 ||
1373 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
1446 ARGB1555ToUVRow(src_argb1555, src_stride_argb1555, dst_u, dst_v, width);
1447 ARGB1555ToYRow(src_argb1555, dst_y, width);
1448 ARGB1555ToYRow(src_argb1555 + src_stride_argb1555, dst_y + dst_stride_y,
1451 ARGB1555ToARGBRow(src_argb1555, ro
[all...]
H A Dconvert_argb.cc1150 int ARGB1555ToARGB(const uint8* src_argb1555, argument
1157 void (*ARGB1555ToARGBRow)(const uint8* src_argb1555, uint8* dst_argb,
1159 if (!src_argb1555 || !dst_argb || width <= 0 || height == 0) {
1165 src_argb1555 = src_argb1555 + (height - 1) * src_stride_argb1555;
1216 ARGB1555ToARGBRow(src_argb1555, dst_argb, width);
1217 src_argb1555 += src_stride_argb1555;
H A Drow_dspr2.cc818 void ARGB1555ToARGBRow_DSPR2(const uint8* src_argb1555, argument
827 "lh %[tmp_t1], 0(%[src_argb1555]) \n"
829 "addiu %[src_argb1555], %[src_argb1555], 2 \n"
841 [tmp_t3] "=&r"(tmp_t3), [src_argb1555] "+r"(src_argb1555),
H A Drow_neon.cc868 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, argument
881 : "+r"(src_argb1555), // %0
1820 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, argument
1880 : "+r"(src_argb1555), // %0
1990 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { argument
2009 : "+r"(src_argb1555), // %0
H A Drow_neon64.cc876 void ARGB1555ToARGBRow_NEON(const uint8* src_argb1555, argument
889 : "+r"(src_argb1555), // %0
1791 void ARGB1555ToUVRow_NEON(const uint8* src_argb1555, argument
1796 const uint8* src_argb1555_1 = src_argb1555 + src_stride_argb1555;
1850 : "+r"(src_argb1555), // %0
1963 void ARGB1555ToYRow_NEON(const uint8* src_argb1555, uint8* dst_y, int width) { argument
1982 : "+r"(src_argb1555), // %0
H A Drow_common.cc132 void ARGB1555ToARGBRow_C(const uint8* src_argb1555, argument
137 uint8 b = src_argb1555[0] & 0x1f;
138 uint8 g = (src_argb1555[0] >> 5) | ((src_argb1555[1] & 0x03) << 3);
139 uint8 r = (src_argb1555[1] & 0x7c) >> 2;
140 uint8 a = src_argb1555[1] >> 7;
146 src_argb1555 += 2;
456 void ARGB1555ToYRow_C(const uint8* src_argb1555, uint8* dst_y, int width) { argument
459 uint8 b = src_argb1555[0] & 0x1f;
460 uint8 g = (src_argb1555[
536 ARGB1555ToUVRow_C(const uint8* src_argb1555, int src_stride_argb1555, uint8* dst_u, uint8* dst_v, int width) argument
[all...]
H A Drow_msa.cc1500 void ARGB1555ToARGBRow_MSA(const uint8* src_argb1555, argument
1511 src0 = (v8u16)__msa_ld_h((v8u16*)src_argb1555, 0);
1512 src1 = (v8u16)__msa_ld_h((v8u16*)src_argb1555, 16);
1545 src_argb1555 += 32;
1645 void ARGB1555ToYRow_MSA(const uint8* src_argb1555, uint8* dst_y, int width) { argument
1657 src0 = (v8u16)__msa_ld_b((v8i16*)src_argb1555, 0);
1658 src1 = (v8u16)__msa_ld_b((v8i16*)src_argb1555, 16);
1697 src_argb1555 += 32;
1847 void ARGB1555ToUVRow_MSA(const uint8* src_argb1555, argument
1853 const uint16* s = (const uint16*)src_argb1555;
[all...]

Completed in 299 milliseconds