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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEGaussianBlur.cpp 178 // blockHeight * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
180 const int jobsWithExtra = paintSize.height() % jobs;
188 currentY += job < jobsWithExtra ? blockHeight + 1 : blockHeight;
216 int adjustedBlockHeight = job < jobsWithExtra ? blockHeight + 1 : blockHeight;
FEMorphology.cpp 186 // jobSize * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
188 const int jobsWithExtra = paintingData->height % numOfThreads;
194 currentY += job < jobsWithExtra ? jobSize + 1 : jobSize;
FETurbulence.cpp 381 // stepY * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
383 const int jobsWithExtra = absolutePaintRect().height() % i;
392 startY += i < jobsWithExtra ? stepY + 1 : stepY;
FEConvolveMatrix.cpp 463 // heightPerThread * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
465 const int jobsWithExtra = clipBottom % numOfThreads;
475 startY += job < jobsWithExtra ? heightPerThread + 1 : heightPerThread;
FELighting.cpp 268 // yStep * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
270 const int jobsWithExtra = (data.heightDecreasedByOne - 1) % job;
279 yStart += job < jobsWithExtra ? yStep + 1 : yStep;

Completed in 64 milliseconds