Searched refs:py0 (Results 1 – 2 of 2) sorted by relevance
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsicConvolve3x3.cpp | 85 const uchar4 *py0, const uchar4 *py1, const uchar4 *py2, in ConvolveOneU4() argument 91 float4 px = convert_float4(py0[x1]) * coeff[0] + in ConvolveOneU4() 92 convert_float4(py0[x]) * coeff[1] + in ConvolveOneU4() 93 convert_float4(py0[x2]) * coeff[2] + in ConvolveOneU4() 107 const uchar2 *py0, const uchar2 *py1, const uchar2 *py2, in ConvolveOneU2() argument 113 float2 px = convert_float2(py0[x1]) * coeff[0] + in ConvolveOneU2() 114 convert_float2(py0[x]) * coeff[1] + in ConvolveOneU2() 115 convert_float2(py0[x2]) * coeff[2] + in ConvolveOneU2() 128 const uchar *py0, const uchar *py1, const uchar *py2, in ConvolveOneU1() argument 134 float px = ((float)py0[x1]) * coeff[0] + 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 93 float4 px = convert_float4(py0[x0]) * coeff[0] + in OneU4() 94 convert_float4(py0[x1]) * coeff[1] + in OneU4() 95 convert_float4(py0[x2]) * coeff[2] + in OneU4() 96 convert_float4(py0[x3]) * coeff[3] + in OneU4() 97 convert_float4(py0[x4]) * coeff[4] + in OneU4() 127 … const uchar2 *py0, const uchar2 *py1, const uchar2 *py2, const uchar2 *py3, const uchar2 *py4, in OneU2() argument 136 float2 px = convert_float2(py0[x0]) * coeff[0] + in OneU2() 137 convert_float2(py0[x1]) * coeff[1] + in OneU2() 138 convert_float2(py0[x2]) * coeff[2] + in OneU2() [all …]
|