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

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

Completed in 98 milliseconds