HomeSort by relevance Sort by last modified time
    Searched full:threadcount (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
index.html 28 <input type="radio" name="threadCount" id="radio0" value="0"
31 <input type="radio" name="threadCount" id="radio1" value="1">
33 <input type="radio" name="threadCount" id="radio2" value="2">
35 <input type="radio" name="threadCount" id="radio3" value="4">
37 <input type="radio" name="threadCount" id="radio4" value="6">
39 <input type="radio" name="threadCount" id="radio5" value="8">
41 <input type="radio" name="threadCount" id="radio6" value="12">
43 <input type="radio" name="threadCount" id="radio7" value="16">
45 <input type="radio" name="threadCount" id="radio8" value="24">
47 <input type="radio" name="threadCount" id="radio9" value="32"
    [all...]
  /external/eigen/demos/mandelbrot/
mandelbrot.h 46 int threadcount; member in class:MandelbrotWidget
59 threadcount = QThread::idealThreadCount();
60 threads = new MandelbrotThread*[threadcount];
61 for(int th = 0; th < threadcount; th++) threads[th] = new MandelbrotThread(this, th);
66 for(int th = 0; th < threadcount; th++) delete threads[th];
mandelbrot.cpp 42 const int threadcount = widget->threadcount; local
48 for(int y = id; y < img_height; y += threadcount)
134 for(int th = 0; th < threadcount; th++)
136 for(int th = 0; th < threadcount; th++)
147 std::cout << threadcount << " threads, "
182 for(int th = 0; th < threadcount; th++)
199 for(int th = 0; th < threadcount; th++)
  /external/chromium_org/native_client_sdk/src/examples/demo/earth/
index.html 39 <input type="radio" name="threadCount" id="radio0" value="0"
42 <input type="radio" name="threadCount" id="radio1" value="1">
44 <input type="radio" name="threadCount" id="radio2" value="2">
46 <input type="radio" name="threadCount" id="radio3" value="4">
48 <input type="radio" name="threadCount" id="radio4" value="6">
50 <input type="radio" name="threadCount" id="radio5" value="8">
52 <input type="radio" name="threadCount" id="radio6" value="12">
54 <input type="radio" name="threadCount" id="radio7" value="16">
56 <input type="radio" name="threadCount" id="radio8" value="24">
58 <input type="radio" name="threadCount" id="radio9" value="32"
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/earth_simd/
index.html 40 <input type="radio" name="threadCount" id="radio0" value="0"
43 <input type="radio" name="threadCount" id="radio1" value="1">
45 <input type="radio" name="threadCount" id="radio2" value="2">
47 <input type="radio" name="threadCount" id="radio3" value="4">
49 <input type="radio" name="threadCount" id="radio4" value="6">
51 <input type="radio" name="threadCount" id="radio5" value="8">
53 <input type="radio" name="threadCount" id="radio6" value="12">
55 <input type="radio" name="threadCount" id="radio7" value="16">
57 <input type="radio" name="threadCount" id="radio8" value="24">
59 <input type="radio" name="threadCount" id="radio9" value="32"
    [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...]
  /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++) {
  /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);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
ThreadGroup002Test.java 167 for (int threadCount = 0; threadCount < testedThreadsNumber; threadCount++) {
168 logWriter.println("\n==> Check for Thread: threadID = " + testedThreadsIDs[threadCount]
169 + "; threadName = " + testedThreadsNames[threadCount]);
174 packet.setNextValueAsReferenceTypeID(testedThreadsIDs[threadCount]);
192 packet.setNextValueAsThreadID(testedThreadsIDs[threadCount]);
203 if ( threadCount >= finishedTestedThreadsNumber ) {
205 logWriter.println("## Thread witn number = " + threadCount +
218 if ( threadCount < finishedTestedThreadsNumber )
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathOpsThreadedCommon.h 36 PathOpsThreadedTestRunner(skiatest::Reporter* reporter, int threadCount)
37 : fNumThreads(threadCount)
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);
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);
PathOpsSimplifyTrianglesThreadedTest.cpp 76 int threadCount = initializeTests(reporter, "testTriangles");
77 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
  /external/skia/tests/
PathOpsThreadedCommon.h 36 PathOpsThreadedTestRunner(skiatest::Reporter* reporter, int threadCount)
37 : fNumThreads(threadCount)
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);
PathOpsSimplifyDegenerateThreadedTest.cpp 71 int threadCount = initializeTests(reporter, "testDegenerates");
72 PathOpsThreadedTestRunner testRunner(reporter, 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...]
  /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/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 362 private List<MyThread> populateGroupsWithThreads(ThreadGroup group, int threadCount) {
364 populateGroupsWithThreads(group, threadCount, result);
368 private void populateGroupsWithThreads(ThreadGroup group, int threadCount, List<MyThread> out) {
369 for (int i = 0; i < threadCount; i++) {
370 out.add(new MyThread(group, "MyThread " + i + " of " + threadCount));
376 populateGroupsWithThreads(element, threadCount, out);
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
JsDocValidator.java 19 int threadCount = Math.min(args.length, Runtime.getRuntime().availableProcessors());
20 ExecutorService executor = Executors.newFixedThreadPool(threadCount);
  /external/chromium_org/third_party/skia/tools/skpdiff/
SkDiffContext.h 28 void setThreadCount(int threadCount) { fThreadCount = threadCount; }

Completed in 403 milliseconds

1 2 3 4