Lines Matching refs:src_rgb565
1550 void RGB565ToARGBRow_MSA(const uint8* src_rgb565, uint8* dst_argb, int width) { in RGB565ToARGBRow_MSA() argument
1561 src0 = (v8u16)__msa_ld_h((v8u16*)src_rgb565, 0); in RGB565ToARGBRow_MSA()
1562 src1 = (v8u16)__msa_ld_h((v8u16*)src_rgb565, 16); in RGB565ToARGBRow_MSA()
1590 src_rgb565 += 32; in RGB565ToARGBRow_MSA()
1702 void RGB565ToYRow_MSA(const uint8* src_rgb565, uint8* dst_y, int width) { in RGB565ToYRow_MSA() argument
1716 src0 = (v8u16)__msa_ld_b((v8i16*)src_rgb565, 0); in RGB565ToYRow_MSA()
1717 src1 = (v8u16)__msa_ld_b((v8i16*)src_rgb565, 16); in RGB565ToYRow_MSA()
1760 src_rgb565 += 32; in RGB565ToYRow_MSA()
1928 void RGB565ToUVRow_MSA(const uint8* src_rgb565, in RGB565ToUVRow_MSA() argument
1934 const uint16* s = (const uint16*)src_rgb565; in RGB565ToUVRow_MSA()
1935 const uint16* t = (const uint16*)(src_rgb565 + src_stride_rgb565); in RGB565ToUVRow_MSA()