Home
last modified time | relevance | path

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

/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/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Dthreshold.rscript55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
Dthreshold_half.rscript55 half coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, halfR * halfR * coeff2);
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Dthreshold.rscript55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Dthreshold.rscript55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
/frameworks/rs/toolkit/
DBlur.cpp110 float coeff2 = - 1.0f / (2.0f * sigma * sigma); in ComputeGaussianWeights() local
118 mFp[r + mIradius] = coeff1 * powf(e, floatR * floatR * coeff2); in ComputeGaussianWeights()
/frameworks/rs/cpu_ref/
DrsCpuIntrinsicBlur.cpp80 float coeff2 = - 1.0f / (2.0f * sigma * sigma); in ComputeGaussianWeights() local
88 mFp[r + mIradius] = coeff1 * powf(e, floatR * floatR * coeff2); in ComputeGaussianWeights()