Home
last modified time | relevance | path

Searched refs:dxRight (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
DFEGaussianBlurNEON.h38 …unsigned dx, int dxLeft, int dxRight, int stride, int strideLine, int effectWidth, int effectHeigh… in boxBlurNEON() argument
51 int maxKernelSize = std::min(dxRight, effectWidth); in boxBlurNEON()
66 if (x + dxRight < effectWidth) { in boxBlurNEON()
67 …oat32x4_t sourcePixelAsFloat = loadRGBA8AsFloat(sourcePixel + pixelOffset + dxRight * pixelStride); in boxBlurNEON()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEGaussianBlur.cpp84 …unsigned dx, int dxLeft, int dxRight, int stride, int strideLine, int effectWidth, int effectHeigh… in boxBlur() argument
91 int maxKernelSize = min(dxRight, effectWidth); in boxBlur()
101 if (x + dxRight < effectWidth) in boxBlur()
102 sum += srcPixelArray->item(pixelByteOffset + dxRight * stride); in boxBlur()
114 int dxRight = 0; in platformApplyGeneric() local
122 kernelPosition(i, kernelSizeX, dxLeft, dxRight); in platformApplyGeneric()
125 …boxBlurNEON(src, dst, kernelSizeX, dxLeft, dxRight, 4, stride, paintSize.width(), paintSize.height… in platformApplyGeneric()
127 …boxBlur(src, dst, kernelSizeX, dxLeft, dxRight, 4, stride, paintSize.width(), paintSize.height(), … in platformApplyGeneric()
129 …boxBlur(src, dst, kernelSizeX, dxLeft, dxRight, 4, stride, paintSize.width(), paintSize.height(), … in platformApplyGeneric()