Lines Matching refs:src_stride_argb
926 int ARGBToI420(const uint8* src_argb, int src_stride_argb, in ARGBToI420() argument
939 src_argb = src_argb + (height - 1) * src_stride_argb; in ARGBToI420()
940 src_stride_argb = -src_stride_argb; in ARGBToI420()
943 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGBToI420()
957 if (IS_ALIGNED(src_argb, 16) && IS_ALIGNED(src_stride_argb, 16)) { in ARGBToI420()
968 ARGBToUVRow(src_argb, src_stride_argb, dst_u, dst_v, width); in ARGBToI420()
970 ARGBToYRow(src_argb + src_stride_argb, dst_y + dst_stride_y, width); in ARGBToI420()
971 src_argb += src_stride_argb * 2; in ARGBToI420()
1188 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RGB24ToI420()
1259 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RAWToI420()
1330 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in RGB565ToI420()
1401 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGB1555ToI420()
1473 void (*ARGBToUVRow)(const uint8* src_argb0, int src_stride_argb, in ARGB4444ToI420()