HomeSort by relevance Sort by last modified time
    Searched refs:optimalThreadNumber (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FELightingNEON.h 169 int optimalThreadNumber = ((data.widthDecreasedByOne - 1) * (data.heightDecreasedByOne - 1)) / s_minimalRectDimension;
170 if (optimalThreadNumber > 1) {
172 ParallelJobs<FELightingPaintingDataForNeon> parallelJobs(&WebCore::FELighting::platformApplyNeonWorker, optimalThreadNumber);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEMorphology.cpp 173 int optimalThreadNumber = (paintingData->width * paintingData->height) / s_minimalArea;
174 if (optimalThreadNumber > 1) {
175 ParallelJobs<PlatformApplyParameters> parallelJobs(&WebCore::FEMorphology::platformApplyWorker, optimalThreadNumber);
FEGaussianBlur.cpp 167 int optimalThreadNumber = (paintSize.width() * paintSize.height()) / (s_minimalRectDimension + extraHeight * paintSize.width());
169 if (optimalThreadNumber > 1) {
170 ParallelJobs<PlatformApplyParameters> parallelJobs(&platformApplyWorker, optimalThreadNumber);
FETurbulence.cpp 370 int optimalThreadNumber = (absolutePaintRect().width() * absolutePaintRect().height()) / s_minimalRectDimension;
371 if (optimalThreadNumber > 1) {
373 ParallelJobs<FillRegionParameters> parallelJobs(&WebCore::FETurbulence::fillRegionWorker, optimalThreadNumber);
FEConvolveMatrix.cpp 453 int optimalThreadNumber = (absolutePaintRect().width() * absolutePaintRect().height()) / s_minimalRectDimension;
454 if (optimalThreadNumber > 1) {
455 ParallelJobs<InteriorPixelParameters> parallelJobs(&WebCore::FEConvolveMatrix::setInteriorPixelsWorker, optimalThreadNumber);
FELighting.cpp 255 int optimalThreadNumber = ((data.widthDecreasedByOne - 1) * (data.heightDecreasedByOne - 1)) / s_minimalRectDimension;
256 if (optimalThreadNumber > 1) {
258 ParallelJobs<PlatformApplyGenericParameters> parallelJobs(&platformApplyGenericWorker, optimalThreadNumber);

Completed in 1162 milliseconds