HomeSort by relevance Sort by last modified time
    Searched defs:threadCount (Results 1 - 25 of 48) sorted by null

1 2

  /external/skia/tests/
PathOpsOpCubicThreadedTest.cpp 70 int threadCount = initializeTests(reporter, "cubicOp");
71 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsOpRectThreadedTest.cpp 77 int threadCount = initializeTests(reporter, "testOp");
78 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsOpLoopThreadedTest.cpp 65 int threadCount = initializeTests(reporter, "cubicOp");
66 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSimplifyDegenerateThreadedTest.cpp 71 int threadCount = initializeTests(reporter, "testDegenerates");
72 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSimplifyQuadThreadedTest.cpp 77 int threadCount = initializeTests(reporter, "testQuads");
78 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 79 int threadCount = initializeTests(reporter, "testQuadralaterals");
80 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSimplifyRectThreadedTest.cpp 190 int threadCount = initializeTests(reporter, "testLine");
191 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSimplifyTrianglesThreadedTest.cpp 76 int threadCount = initializeTests(reporter, "testTriangles");
77 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsQuadLineIntersectionThreadedTest.cpp 114 int threadCount = initializeTests(reporter, "testQuadLineIntersect");
115 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSkpClipTest.cpp 323 TestRunner(skiatest::Reporter* reporter, int threadCount)
324 : fNumThreads(threadCount)
877 int threadCount = reporter->allowThreaded() ? SkThreadPool::kThreadPerCore : 1;
878 TestRunner testRunner(reporter, threadCount);
929 int threadCount = reporter->allowThreaded() ? SkThreadPool::kThreadPerCore : 1;
930 TestRunner testRunner(reporter, threadCount);
    [all...]
SkpSkGrTest.cpp 128 SkpSkGrThreadedTestRunner(skiatest::Reporter* reporter, int threadCount)
129 : fNumThreads(threadCount)
679 int threadCount = reporter->allowThreaded() ? 3 : 1;
680 SkpSkGrThreadedTestRunner testRunner(reporter, threadCount);
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
JsDocValidator.java 21 int threadCount = Math.min(args.length, Runtime.getRuntime().availableProcessors());
22 ExecutorService executor = Executors.newFixedThreadPool(threadCount);
  /external/chromium_org/third_party/icu/source/test/intltest/
intltest.h 305 int32_t threadCount;
intltest.cpp 548 threadCount = 1;
632 int32_t rval = this->threadCount;
633 this->threadCount = count;
1182 int32_t threadCount = 1;
    [all...]
  /external/icu/icu4c/source/test/intltest/
intltest.h 329 int32_t threadCount;
intltest.cpp 548 threadCount = 1;
632 int32_t rval = this->threadCount;
633 this->threadCount = count;
1184 int32_t threadCount = 1;
    [all...]
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 53 private void parallelDrainQueue(int threadCount) {
54 ExecutorService executor = Executors.newFixedThreadPool(threadCount);
55 for (int i = 0; i < threadCount; i++) {
130 int threadCount = 20;
139 crawler.parallelDrainQueue(threadCount);
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalTest.java 87 final int threadCount = 10;
88 final int x[] = new int[threadCount];
92 for (int i = 0; i < threadCount; i++) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ObjectTest.java 118 final int threadCount = 20;
119 for (int i = 0; i < threadCount; ++i) {
129 if (ready == threadCount) {
136 + ready + ")", ready == threadCount);
140 for (int i = 1; i <= threadCount; ++i) {
187 final int threadCount = 20;
188 for (int i = 0; i < threadCount; ++i) {
200 if (ready == threadCount) {
207 + ready + ")", ready == threadCount);
217 + status + ")", status == threadCount);
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 253 int threadCount;
255 threadCount = threadGroup.enumerate(threads);
256 if (threadCount == threads.length) {
262 if (threadCount < lastThread) {
264 Arrays.fill(threads, threadCount, lastThread, null);
266 lastThread = threadCount;
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 94 , threadCount (0)
104 int threadCount;
122 deUint32 getInitialValue (void) const { return m_spec.callCount * m_spec.threadCount + 1; }
242 src << " uint preGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n";
245 src << " uint increment[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n";
248 src << " uint decrement[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n";
251 src << " uint postGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n";
254 src << " uint get[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n";
537 expectedValue = initialValue + (m_spec.useBranches ? m_spec.threadCount*m_spec.callCount - m_spec.threadCount*m_spec.callCount/2 : m_spec.threadCount*m_spec.callCount)
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 71 int threadCount;
878 for (int threadNdx = 0; threadNdx < m_config.threadCount * m_config.perThreadContextCount; threadNdx++)
898 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vector<TestContext*>& contexts)
900 DE_ASSERT(threadCount * perThreadContextCount == (int)contexts.size());
905 for (int threadNdx = 0; threadNdx < threadCount; threadNdx++)
1000 log << TestLog::Message << "Total triangles rendered: : " << config.triangleCount * config.drawCallCount * config.frameCount * config.perThreadContextCount * config.threadCount << TestLog::EndMessage;
1001 log << TestLog::Message << "Number of threads: " << config.threadCount << TestLog::EndMessage;
1055 createThreads(threads, m_config.threadCount, m_config.perThreadContextCount, m_contexts);
1103 basicConfig.threadCount = 1;
1138 int threadCount = threadCounts[threadCountNdx]
    [all...]
teglGLES2SharingThreadedTests.cpp     [all...]
  /external/opencv/cv/src/
cvlkpyramid.cpp 299 int threadCount = cvGetNumThreads();
366 for( i = 0; i < threadCount; i++ )
417 bufferBytes = (srcPatchLen + patchLen * 3) * sizeof( _patchI[0][0] ) * threadCount;
420 for( i = 0; i < threadCount; i++ )
444 #pragma omp parallel for num_threads(threadCount) schedule(dynamic)
    [all...]
  /external/chromium_org/v8/src/
debug-debugger.js 964 ExecutionState.prototype.threadCount = function() {
    [all...]

Completed in 548 milliseconds

1 2