/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
D | FEGaussianBlur.h | 73 static inline void kernelPosition(int boxBlur, unsigned& std, int& dLeft, int& dRight); 83 inline void FEGaussianBlur::kernelPosition(int boxBlur, unsigned& std, int& dLeft, int& dRight) in kernelPosition() argument 86 switch (boxBlur) { in kernelPosition()
|
D | FEGaussianBlur.cpp | 83 inline void boxBlur(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray, in boxBlur() function 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() 140 …boxBlur(src, dst, kernelSizeY, dyLeft, dyRight, stride, 4, paintSize.height(), paintSize.width(), … in platformApplyGeneric() 142 …boxBlur(src, dst, kernelSizeY, dyLeft, dyRight, stride, 4, paintSize.height(), paintSize.width(), … in platformApplyGeneric()
|
/external/chromium_org/third_party/skia/src/effects/ |
D | SkBlurImageFilter.cpp | 67 static void boxBlur(const SkPMColor* src, int srcStride, SkPMColor* dst, int kernelSize, in boxBlur() function 193 boxBlurX = boxBlur<kX, kX>; in onFilterImage() 194 boxBlurY = boxBlur<kY, kY>; in onFilterImage() 195 boxBlurXY = boxBlur<kX, kY>; in onFilterImage() 196 boxBlurYX = boxBlur<kY, kX>; in onFilterImage()
|
D | SkBlurMask.cpp | 75 static int boxBlur(const uint8_t* src, int src_y_stride, uint8_t* dst, in boxBlur() function 561 w = boxBlur(sp, src.fRowBytes, tp, loRadius, hiRadius, w, h, false); in BoxBlur() 562 w = boxBlur(tp, w, dp, hiRadius, loRadius, w, h, false); in BoxBlur() 563 w = boxBlur(dp, w, tp, hiRadius, hiRadius, w, h, true); in BoxBlur() 565 h = boxBlur(tp, h, dp, loRadius, hiRadius, h, w, false); in BoxBlur() 566 h = boxBlur(dp, h, tp, hiRadius, loRadius, h, w, false); in BoxBlur() 567 h = boxBlur(tp, h, dp, hiRadius, hiRadius, h, w, true); in BoxBlur() 569 w = boxBlur(sp, src.fRowBytes, tp, rx, rx, w, h, true); in BoxBlur() 570 h = boxBlur(tp, h, dp, ry, ry, h, w, true); in BoxBlur()
|
/external/skia/src/effects/ |
D | SkBlurImageFilter.cpp | 67 static void boxBlur(const SkPMColor* src, int srcStride, SkPMColor* dst, int kernelSize, in boxBlur() function 193 boxBlurX = boxBlur<kX, kX>; in onFilterImage() 194 boxBlurY = boxBlur<kY, kY>; in onFilterImage() 195 boxBlurXY = boxBlur<kX, kY>; in onFilterImage() 196 boxBlurYX = boxBlur<kY, kX>; in onFilterImage()
|
D | SkBlurMask.cpp | 75 static int boxBlur(const uint8_t* src, int src_y_stride, uint8_t* dst, in boxBlur() function 561 w = boxBlur(sp, src.fRowBytes, tp, loRadius, hiRadius, w, h, false); in BoxBlur() 562 w = boxBlur(tp, w, dp, hiRadius, loRadius, w, h, false); in BoxBlur() 563 w = boxBlur(dp, w, tp, hiRadius, hiRadius, w, h, true); in BoxBlur() 565 h = boxBlur(tp, h, dp, loRadius, hiRadius, h, w, false); in BoxBlur() 566 h = boxBlur(dp, h, tp, hiRadius, loRadius, h, w, false); in BoxBlur() 567 h = boxBlur(tp, h, dp, hiRadius, hiRadius, h, w, true); in BoxBlur() 569 w = boxBlur(sp, src.fRowBytes, tp, rx, rx, w, h, true); in BoxBlur() 570 h = boxBlur(tp, h, dp, ry, ry, h, w, true); in BoxBlur()
|