Lines Matching refs:matrix_argb
1946 const int8* matrix_argb, in ARGBColorMatrix() argument
1951 const int8* matrix_argb, int width) = in ARGBColorMatrix()
1953 if (!src_argb || !dst_argb || !matrix_argb || width <= 0 || height == 0) { in ARGBColorMatrix()
1978 ARGBColorMatrixRow(src_argb, dst_argb, matrix_argb, width); in ARGBColorMatrix()
1995 SIMD_ALIGNED(int8 matrix_argb[16]); in RGBColorMatrix()
2003 matrix_argb[0] = matrix_rgb[0] / 2; in RGBColorMatrix()
2004 matrix_argb[1] = matrix_rgb[1] / 2; in RGBColorMatrix()
2005 matrix_argb[2] = matrix_rgb[2] / 2; in RGBColorMatrix()
2006 matrix_argb[3] = matrix_rgb[3] / 2; in RGBColorMatrix()
2007 matrix_argb[4] = matrix_rgb[4] / 2; in RGBColorMatrix()
2008 matrix_argb[5] = matrix_rgb[5] / 2; in RGBColorMatrix()
2009 matrix_argb[6] = matrix_rgb[6] / 2; in RGBColorMatrix()
2010 matrix_argb[7] = matrix_rgb[7] / 2; in RGBColorMatrix()
2011 matrix_argb[8] = matrix_rgb[8] / 2; in RGBColorMatrix()
2012 matrix_argb[9] = matrix_rgb[9] / 2; in RGBColorMatrix()
2013 matrix_argb[10] = matrix_rgb[10] / 2; in RGBColorMatrix()
2014 matrix_argb[11] = matrix_rgb[11] / 2; in RGBColorMatrix()
2015 matrix_argb[14] = matrix_argb[13] = matrix_argb[12] = 0; in RGBColorMatrix()
2016 matrix_argb[15] = 64; // 1.0 in RGBColorMatrix()
2019 dst_stride_argb, &matrix_argb[0], width, height); in RGBColorMatrix()