Home
last modified time | relevance | path

Searched refs:boxBlurX (Results 1 – 11 of 11) sorted by relevance

/external/skia/src/effects/
DSkBlurImageFilter.cpp206 SkBoxBlurProc boxBlurX, boxBlurXY, boxBlurYX; in onFilterImage() local
207 if (!SkBoxBlurGetPlatformProcs(&boxBlurX, &boxBlurXY, &boxBlurYX)) { in onFilterImage()
208 boxBlurX = boxBlur<kX, kX>; in onFilterImage()
214 boxBlurX(s, sw, t, kernelSizeX, lowOffsetX, highOffsetX, w, h); in onFilterImage()
215 boxBlurX(t, w, d, kernelSizeX, highOffsetX, lowOffsetX, w, h); in onFilterImage()
217 boxBlurX(t, h, d, kernelSizeY, lowOffsetY, highOffsetY, h, w); in onFilterImage()
218 boxBlurX(d, h, t, kernelSizeY, highOffsetY, lowOffsetY, h, w); in onFilterImage()
221 boxBlurX(s, sw, d, kernelSizeX, lowOffsetX, highOffsetX, w, h); in onFilterImage()
222 boxBlurX(d, w, t, kernelSizeX, highOffsetX, lowOffsetX, w, h); in onFilterImage()
223 boxBlurX(t, w, d, kernelSizeX3, highOffsetX, highOffsetX, w, h); in onFilterImage()
[all …]
/external/skia/src/opts/
DSkBlurImage_opts_arm.cpp11 bool SkBoxBlurGetPlatformProcs(SkBoxBlurProc* boxBlurX, in SkBoxBlurGetPlatformProcs() argument
22 return SkBoxBlurGetPlatformProcs_NEON(boxBlurX, boxBlurXY, boxBlurYX); in SkBoxBlurGetPlatformProcs()
DSkBlurImage_opts_SSE4.cpp96 bool SkBoxBlurGetPlatformProcs_SSE4(SkBoxBlurProc* boxBlurX, in SkBoxBlurGetPlatformProcs_SSE4() argument
99 *boxBlurX = SkBoxBlur_SSE4<kX, kX>; in SkBoxBlurGetPlatformProcs_SSE4()
107 bool SkBoxBlurGetPlatformProcs_SSE4(SkBoxBlurProc* boxBlurX, in SkBoxBlurGetPlatformProcs_SSE4() argument
Dopts_check_x86.cpp352 bool SkBoxBlurGetPlatformProcs(SkBoxBlurProc* boxBlurX, in SkBoxBlurGetPlatformProcs() argument
356 return SkBoxBlurGetPlatformProcs_SSE4(boxBlurX, boxBlurXY, boxBlurYX); in SkBoxBlurGetPlatformProcs()
359 return SkBoxBlurGetPlatformProcs_SSE2(boxBlurX, boxBlurXY, boxBlurYX); in SkBoxBlurGetPlatformProcs()
DSkBlurImage_opts_SSE2.cpp99 bool SkBoxBlurGetPlatformProcs_SSE2(SkBoxBlurProc* boxBlurX, in SkBoxBlurGetPlatformProcs_SSE2() argument
102 *boxBlurX = SkBoxBlur_SSE2<kX, kX>; in SkBoxBlurGetPlatformProcs_SSE2()
DSkBlurImage_opts_neon.h10 bool SkBoxBlurGetPlatformProcs_NEON(SkBoxBlurProc* boxBlurX,
DSkBlurImage_opts_none.cpp10 bool SkBoxBlurGetPlatformProcs(SkBoxBlurProc* boxBlurX, in SkBoxBlurGetPlatformProcs() argument
DSkBlurImage_opts_SSE4.h13 bool SkBoxBlurGetPlatformProcs_SSE4(SkBoxBlurProc* boxBlurX,
DSkBlurImage_opts_SSE2.h13 bool SkBoxBlurGetPlatformProcs_SSE2(SkBoxBlurProc* boxBlurX,
DSkBlurImage_opts.h16 bool SkBoxBlurGetPlatformProcs(SkBoxBlurProc* boxBlurX,
DSkBlurImage_opts_neon.cpp179 bool SkBoxBlurGetPlatformProcs_NEON(SkBoxBlurProc* boxBlurX, in SkBoxBlurGetPlatformProcs_NEON() argument
182 *boxBlurX = SkBoxBlur_NEON<kX, kX>; in SkBoxBlurGetPlatformProcs_NEON()