Searched refs:jobsWithExtra (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFETurbulence.cpp377 // stepY * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
379 const int jobsWithExtra = absolutePaintRect().height() % i; local
388 startY += i < jobsWithExtra ? stepY + 1 : stepY;
H A DFEConvolveMatrix.cpp467 // heightPerThread * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
469 const int jobsWithExtra = clipBottom % numOfThreads; local
479 startY += job < jobsWithExtra ? heightPerThread + 1 : heightPerThread;
H A DFELighting.cpp271 // yStep * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
273 const int jobsWithExtra = (data.heightDecreasedByOne - 1) % job; local
282 yStart += job < jobsWithExtra ? yStep + 1 : yStep;

Completed in 5815 milliseconds