Home
last modified time | relevance | path

Searched refs:gPtr (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
Dhorizontal_blur.rs8 const float *gPtr = fs->gaussian;
12 blurredPixel += i->xyz * gPtr[0];
13 gPtr++;
20 blurredPixel += i->xyz * gPtr[0];
21 gPtr++;
Dvertical_blur.rs61 const float *gPtr = fs->gaussian;
65 blurredPixel += i->xyz * gPtr[0];
66 gPtr++;
72 blurredPixel += i->xyz * gPtr[0];
73 gPtr++;
/frameworks/base/libs/hwui/
DFontRenderer.cpp828 const float* gPtr = weights; in horizontalBlur() local
834 blurredPixel += currentPixel * gPtr[0]; in horizontalBlur()
835 gPtr++; in horizontalBlur()
850 blurredPixel += currentPixel * gPtr[0]; in horizontalBlur()
851 gPtr++; in horizontalBlur()
871 const float* gPtr = weights; in verticalBlur() local
878 blurredPixel += currentPixel * gPtr[0]; in verticalBlur()
879 gPtr++; in verticalBlur()
895 blurredPixel += currentPixel * gPtr[0]; in verticalBlur()
896 gPtr++; in verticalBlur()