Searched refs:py1 (Results 1 – 4 of 4) sorted by relevance
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsicConvolve3x3.cpp | 85 const uchar4 *py0, const uchar4 *py1, const uchar4 *py2, in ConvolveOneU4() argument 94 convert_float4(py1[x1]) * coeff[3] + in ConvolveOneU4() 95 convert_float4(py1[x]) * coeff[4] + in ConvolveOneU4() 96 convert_float4(py1[x2]) * coeff[5] + in ConvolveOneU4() 107 const uchar2 *py0, const uchar2 *py1, const uchar2 *py2, in ConvolveOneU2() argument 116 convert_float2(py1[x1]) * coeff[3] + in ConvolveOneU2() 117 convert_float2(py1[x]) * coeff[4] + in ConvolveOneU2() 118 convert_float2(py1[x2]) * coeff[5] + in ConvolveOneU2() 128 const uchar *py0, const uchar *py1, const uchar *py2, in ConvolveOneU1() argument 137 ((float)py1[x1]) * coeff[3] + in ConvolveOneU1() [all …]
|
D | rsCpuIntrinsicConvolve5x5.cpp | 84 … const uchar4 *py0, const uchar4 *py1, const uchar4 *py2, const uchar4 *py3, const uchar4 *py4, in OneU4() argument 99 convert_float4(py1[x0]) * coeff[5] + in OneU4() 100 convert_float4(py1[x1]) * coeff[6] + in OneU4() 101 convert_float4(py1[x2]) * coeff[7] + in OneU4() 102 convert_float4(py1[x3]) * coeff[8] + in OneU4() 103 convert_float4(py1[x4]) * coeff[9] + in OneU4() 127 … const uchar2 *py0, const uchar2 *py1, const uchar2 *py2, const uchar2 *py3, const uchar2 *py4, in OneU2() argument 142 convert_float2(py1[x0]) * coeff[5] + in OneU2() 143 convert_float2(py1[x1]) * coeff[6] + in OneU2() 144 convert_float2(py1[x2]) * coeff[7] + in OneU2() [all …]
|
/frameworks/rs/toolkit/ |
D | Convolve3x3.cpp | 39 void kernelU4(uchar* out, uint32_t xstart, uint32_t xend, const uchar* py0, const uchar* py1, 79 const InputOutputType* py1, const InputOutputType* py2, const float* coeff, in convolveOneU() argument 87 convert<ComputationType>(py1[x1]) * coeff[3] + in convolveOneU() 88 convert<ComputationType>(py1[x]) * coeff[4] + in convolveOneU() 89 convert<ComputationType>(py1[x2]) * coeff[5] + in convolveOneU() 114 const InputOutputType* py1, const InputOutputType* py2, const float* coeff, in ConvolveOneF() argument 119 (py1[x1] * coeff[3]) + (py1[x] * coeff[4]) + (py1[x2] * coeff[5]) + in ConvolveOneF() 138 const uchar4* py1 = (const uchar4*)ppy1; in kernelU4() local 144 convolveOneU<uchar4, float4>(0, out, py0, py1, py2, mFp, mSizeX); in kernelU4() 154 rsdIntrinsicConvolve3x3_K(out, &py0[x1 - 1], &py1[x1 - 1], &py2[x1 - 1], mIp, len); in kernelU4() [all …]
|
D | Convolve5x5.cpp | 40 void kernelU4(uchar* out, uint32_t xstart, uint32_t xend, const uchar* py0, const uchar* py1, 66 const InputOutputType* py1, const InputOutputType* py2, in ConvolveOneU() argument 81 convert<ComputationType>(py1[x0]) * coeff[5] + in ConvolveOneU() 82 convert<ComputationType>(py1[x1]) * coeff[6] + in ConvolveOneU() 83 convert<ComputationType>(py1[x2]) * coeff[7] + in ConvolveOneU() 84 convert<ComputationType>(py1[x3]) * coeff[8] + in ConvolveOneU() 85 convert<ComputationType>(py1[x4]) * coeff[9] + in ConvolveOneU() 111 const InputOutputType* py1, const InputOutputType* py2, in ConvolveOneF() argument 123 py1[x0] * coeff[5] + py1[x1] * coeff[6] + py1[x2] * coeff[7] + in ConvolveOneF() 124 py1[x3] * coeff[8] + py1[x4] * coeff[9] + in ConvolveOneF() [all …]
|