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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEMorphology.cpp 183 int numOfThreads = parallelJobs.numberOfJobs();
184 if (numOfThreads > 1) {
187 const int jobSize = paintingData->height / numOfThreads;
188 const int jobsWithExtra = paintingData->height % numOfThreads;
190 for (int job = numOfThreads - 1; job >= 0; --job) {
FEConvolveMatrix.cpp 460 const int numOfThreads = parallelJobs.numberOfJobs();
464 const int heightPerThread = clipBottom / numOfThreads;
465 const int jobsWithExtra = clipBottom % numOfThreads;
468 for (int job = 0; job < numOfThreads; ++job) {

Completed in 62 milliseconds