Home
last modified time | relevance | path

Searched refs:optimalThreadNumber (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
DFELightingNEON.h169 …int optimalThreadNumber = ((data.widthDecreasedByOne - 1) * (data.heightDecreasedByOne - 1)) / s_m… in platformApplyNeon() local
170 if (optimalThreadNumber > 1) { in platformApplyNeon()
172 …ntingDataForNeon> parallelJobs(&WebCore::FELighting::platformApplyNeonWorker, optimalThreadNumber); in platformApplyNeon()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEMorphology.cpp173 int optimalThreadNumber = (paintingData->width * paintingData->height) / s_minimalArea; in platformApply() local
174 if (optimalThreadNumber > 1) { in platformApply()
175 …ormApplyParameters> parallelJobs(&WebCore::FEMorphology::platformApplyWorker, optimalThreadNumber); in platformApply()
DFEGaussianBlur.cpp167 …int optimalThreadNumber = (paintSize.width() * paintSize.height()) / (s_minimalRectDimension + ext… in platformApply() local
169 if (optimalThreadNumber > 1) { in platformApply()
170 … ParallelJobs<PlatformApplyParameters> parallelJobs(&platformApplyWorker, optimalThreadNumber); in platformApply()
DFEConvolveMatrix.cpp453 …int optimalThreadNumber = (absolutePaintRect().width() * absolutePaintRect().height()) / s_minimal… in applySoftware() local
454 if (optimalThreadNumber > 1) { in applySoftware()
455 …Parameters> parallelJobs(&WebCore::FEConvolveMatrix::setInteriorPixelsWorker, optimalThreadNumber); in applySoftware()
DFETurbulence.cpp370 …int optimalThreadNumber = (absolutePaintRect().width() * absolutePaintRect().height()) / s_minimal… in applySoftware() local
371 if (optimalThreadNumber > 1) { in applySoftware()
373 …<FillRegionParameters> parallelJobs(&WebCore::FETurbulence::fillRegionWorker, optimalThreadNumber); in applySoftware()
DFELighting.cpp255 …int optimalThreadNumber = ((data.widthDecreasedByOne - 1) * (data.heightDecreasedByOne - 1)) / s_m… in platformApplyGeneric() local
256 if (optimalThreadNumber > 1) { in platformApplyGeneric()
258 …obs<PlatformApplyGenericParameters> parallelJobs(&platformApplyGenericWorker, optimalThreadNumber); in platformApplyGeneric()