Lines Matching refs:x1
58 uint32_t x1 = rsMax((int32_t)x-1, 0); in ConvolveOne() local
61 float4 px = convert_float4(py0[x1]) * coeff[0] + in ConvolveOne()
64 convert_float4(py1[x1]) * coeff[3] + in ConvolveOne()
67 convert_float4(py2[x1]) * coeff[6] + in ConvolveOne()
95 uint32_t x1 = xstart; in Convolve3x3_uchar4() local
97 if(x1 == 0) { in Convolve3x3_uchar4()
99 x1 ++; in Convolve3x3_uchar4()
103 if(x2 > x1) { in Convolve3x3_uchar4()
105 int32_t len = (x2 - x1 - 1) >> 1; in Convolve3x3_uchar4()
107 rsdIntrinsicConvolve3x3_K(out, &py0[x1-1], &py1[x1-1], &py2[x1-1], cp->ip, len); in Convolve3x3_uchar4()
108 x1 += len << 1; in Convolve3x3_uchar4()
113 while(x1 != x2) { in Convolve3x3_uchar4()
114 ConvolveOne(p, x1, out, py0, py1, py2, cp->fp); in Convolve3x3_uchar4()
116 x1++; in Convolve3x3_uchar4()