Home
last modified time | relevance | path

Searched refs:coeff2 (Results 1 – 5 of 5) sorted by relevance

/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Dthreshold.rs55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Dthreshold.rs55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Dthreshold.rs55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
/frameworks/base/libs/hwui/utils/
DBlur.cpp78 float coeff2 = - 1.0f / (2.0f * sigma * sigma); in generateGaussianWeights() local
83 weights[r + intRadius] = coeff1 * pow(e, floatR * floatR * coeff2); in generateGaussianWeights()
/frameworks/rs/cpu_ref/
DrsCpuIntrinsicBlur.cpp83 float coeff2 = - 1.0f / (2.0f * sigma * sigma); in ComputeGaussianWeights() local
91 mFp[r + mIradius] = coeff1 * powf(e, floatR * floatR * coeff2); in ComputeGaussianWeights()