Lines Matching refs:x1
81 uint32_t x1 = std::max((int32_t)x - 1, 0); in convolveOneU() local
84 ComputationType px = convert<ComputationType>(py0[x1]) * coeff[0] + in convolveOneU()
87 convert<ComputationType>(py1[x1]) * coeff[3] + in convolveOneU()
90 convert<ComputationType>(py2[x1]) * coeff[6] + in convolveOneU()
116 uint32_t x1 = std::max((int32_t)x - 1, 0); in ConvolveOneF() local
118 *out = (py0[x1] * coeff[0]) + (py0[x] * coeff[1]) + (py0[x2] * coeff[2]) + in ConvolveOneF()
119 (py1[x1] * coeff[3]) + (py1[x] * coeff[4]) + (py1[x2] * coeff[5]) + in ConvolveOneF()
120 (py2[x1] * coeff[6]) + (py2[x] * coeff[7]) + (py2[x2] * coeff[8]); in ConvolveOneF()
141 uint32_t x1 = xstart; in kernelU4() local
143 if (x1 == 0) { in kernelU4()
145 x1++; in kernelU4()
149 if (x2 > x1) { in kernelU4()
152 int32_t len = (x2 - x1 - 1) >> 1; in kernelU4()
154 rsdIntrinsicConvolve3x3_K(out, &py0[x1 - 1], &py1[x1 - 1], &py2[x1 - 1], mIp, len); in kernelU4()
155 x1 += len << 1; in kernelU4()
161 while (x1 != x2) { in kernelU4()
162 convolveOneU<uchar4, float4>(x1, out, py0, py1, py2, mFp, mSizeX); in kernelU4()
164 x1++; in kernelU4()