Lines Matching refs:py4
41 const uchar* py2, const uchar* py3, const uchar* py4);
67 const InputOutputType* py3, const InputOutputType* py4, const float* coeff, in ConvolveOneU() argument
99 convert<ComputationType>(py4[x0]) * coeff[20] + in ConvolveOneU()
100 convert<ComputationType>(py4[x1]) * coeff[21] + in ConvolveOneU()
101 convert<ComputationType>(py4[x2]) * coeff[22] + in ConvolveOneU()
102 convert<ComputationType>(py4[x3]) * coeff[23] + in ConvolveOneU()
103 convert<ComputationType>(py4[x4]) * coeff[24]; in ConvolveOneU()
112 const InputOutputType* py3, const InputOutputType* py4, const float* coeff, in ConvolveOneF() argument
132 py4[x0] * coeff[20] + py4[x1] * coeff[21] + py4[x2] * coeff[22] + in ConvolveOneF()
133 py4[x3] * coeff[23] + py4[x4] * coeff[24]; in ConvolveOneF()
158 const uchar4* py4 = (const uchar4*)ppy4; in kernelU4() local
161 ConvolveOneU<uchar4, float4>(x1, out, py0, py1, py2, py3, py4, mFp, mSizeX); in kernelU4()
172 py4 + x1 - 2, mIp, len); in kernelU4()
182 py4 + x1 - 2, mIp, len); in kernelU4()
189 ConvolveOneU<uchar4, float4>(x1, out, py0, py1, py2, py3, py4, mFp, mSizeX); in kernelU4()
212 const float4* py4 = (const float4*)(pin + stride * y4); in kernelF4() local
215 ConvolveOneF<float4>(x, out, py0, py1, py2, py3, py4, mFp, sizeX); in kernelF4()
234 const float2* py4 = (const float2*)(pin + stride * y4); in RsdCpuScriptIntrinsicConvolve5x5_kernelF2() local
237 ConvolveOneF<float2>(x, out, py0, py1, py2, py3, py4, mFp, sizeX); in RsdCpuScriptIntrinsicConvolve5x5_kernelF2()
256 const float* py4 = (const float*)(pin + stride * y4); in RsdCpuScriptIntrinsicConvolve5x5_kernelF1() local
259 ConvolveOneF<float>(x, out, py0, py1, py2, py3, py4, mFp, sizeX); in RsdCpuScriptIntrinsicConvolve5x5_kernelF1()
281 InputOutputType* py4 = (InputOutputType*)(pin + stride * y4); in convolveU() local
283 ConvolveOneU<InputOutputType, ComputationType>(x, px, py0, py1, py2, py3, py4, mFp, in convolveU()
306 const uchar* py4 = pin + stride * y4; in convolveU4() local
307 kernelU4(px, startX, endX, py0, py1, py2, py3, py4); in convolveU4()