Lines Matching refs:src_rgb24
1412 void RGB24ToARGBRow_LSX(const uint8_t* src_rgb24, in RGB24ToARGBRow_LSX() argument
1427 src0 = __lsx_vld(src_rgb24, 0); in RGB24ToARGBRow_LSX()
1428 src1 = __lsx_vld(src_rgb24, 16); in RGB24ToARGBRow_LSX()
1429 src2 = __lsx_vld(src_rgb24, 32); in RGB24ToARGBRow_LSX()
1439 src_rgb24 += 48; in RGB24ToARGBRow_LSX()
1690 void RGB24ToUVRow_LSX(const uint8_t* src_rgb24, in RGB24ToUVRow_LSX() argument
1696 const uint8_t* next_rgb24 = src_rgb24 + src_stride_rgb24; in RGB24ToUVRow_LSX()
1715 src0 = __lsx_vld(src_rgb24, 0); in RGB24ToUVRow_LSX()
1716 src1 = __lsx_vld(src_rgb24, 16); in RGB24ToUVRow_LSX()
1717 src2 = __lsx_vld(src_rgb24, 32); in RGB24ToUVRow_LSX()
1738 src_rgb24 += 48; in RGB24ToUVRow_LSX()
2966 void RGB24ToYJRow_LSX(const uint8_t* src_rgb24, uint8_t* dst_yj, int width) { in RGB24ToYJRow_LSX() argument
2967 RGBToYMatrixRow_LSX(src_rgb24, dst_yj, width, &kRgb24JPEGConstants); in RGB24ToYJRow_LSX()
2974 void RGB24ToYRow_LSX(const uint8_t* src_rgb24, uint8_t* dst_y, int width) { in RGB24ToYRow_LSX() argument
2975 RGBToYMatrixRow_LSX(src_rgb24, dst_y, width, &kRgb24I601Constants); in RGB24ToYRow_LSX()