Home
last modified time | relevance | path

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

/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Dthreshold.rscript58 float floatR = 0.0f;
60 floatR = (float)r;
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
68 floatR = (float)r;
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Dthreshold.rscript58 float floatR = 0.0f;
60 floatR = (float)r;
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
68 floatR = (float)r;
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Dthreshold.rscript58 float floatR = 0.0f;
60 floatR = (float)r;
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
68 floatR = (float)r;
/frameworks/base/libs/hwui/utils/
DBlur.cpp82 float floatR = (float)r; in generateGaussianWeights() local
83 weights[r + intRadius] = coeff1 * pow(e, floatR * floatR * coeff2); in generateGaussianWeights()
/frameworks/rs/cpu_ref/
DrsCpuIntrinsicBlur.cpp83 float floatR = 0.0f; in ComputeGaussianWeights() local
87 floatR = (float)r; in ComputeGaussianWeights()
88 mFp[r + mIradius] = coeff1 * powf(e, floatR * floatR * coeff2); in ComputeGaussianWeights()