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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FETurbulence.cpp 377 // stepY * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
379 const int jobsWithExtra = absolutePaintRect().height() % i;
388 startY += i < jobsWithExtra ? stepY + 1 : stepY;
FEConvolveMatrix.cpp 467 // heightPerThread * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
469 const int jobsWithExtra = clipBottom % numOfThreads;
479 startY += job < jobsWithExtra ? heightPerThread + 1 : heightPerThread;
FELighting.cpp 271 // yStep * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
273 const int jobsWithExtra = (data.heightDecreasedByOne - 1) % job;
282 yStart += job < jobsWithExtra ? yStep + 1 : yStep;

Completed in 128 milliseconds