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

1 2

  /external/skia/tools/skpdiff/
SkDiffContext.h 28 void setThreadCount(int threadCount) { fThreadCount = threadCount; }
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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...]
ThreadGroupTest.java 1017 final int threadCount) {
1019 populateGroupsWithThreads(aGroup, threadCount, result);
1025 final int threadCount, final Vector<MyThread> allCreated) {
1026 for (int i = 0; i < threadCount; i++) {
1028 final String name = "(MyThread)N =" + iClone + "/" + threadCount
1038 populateGroupsWithThreads(element, threadCount, allCreated);
  /external/skia/tests/
PathOpsThreadedCommon.h 36 PathOpsThreadedTestRunner(skiatest::Reporter* reporter, int threadCount)
37 : fNumThreads(threadCount)
PathOpsOpCubicThreadedTest.cpp 72 int threadCount = initializeTests(reporter, "cubicOp");
73 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsOpRectThreadedTest.cpp 77 int threadCount = initializeTests(reporter, "testOp");
78 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsQuadLineIntersectionThreadedTest.cpp 116 int threadCount = initializeTests(reporter, "testQuadLineIntersect");
117 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSimplifyDegenerateThreadedTest.cpp 71 int threadCount = initializeTests(reporter, "testDegenerates");
72 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSimplifyQuadThreadedTest.cpp 78 int threadCount = initializeTests(reporter, "testQuads");
79 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);
PathOpsSimplifyRectThreadedTest.cpp 191 int threadCount = initializeTests(reporter, "testLine");
192 PathOpsThreadedTestRunner testRunner(reporter, threadCount);
PathOpsSkpClipTest.cpp 133 TestRunner(skiatest::Reporter* reporter, int threadCount)
134 : fNumThreads(threadCount)
642 int threadCount = reporter->allowThreaded() ? SkThreadPool::kThreadPerCore : 1;
643 TestRunner testRunner(reporter, threadCount);
SkpSkGrTest.cpp 128 SkpSkGrThreadedTestRunner(skiatest::Reporter* reporter, int threadCount)
129 : fNumThreads(threadCount)
676 int threadCount = reporter->allowThreaded() ? 3 : 1;
677 SkpSkGrThreadedTestRunner testRunner(reporter, threadCount);
  /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;
  /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);
  /dalvik/vm/
Ddm.cpp 367 int threadCount = 0;
369 threadCount++;
376 int bufLen = kHeaderLen + threadCount * kBytesPerEntry;
382 set2BE(buf+2, (u2) threadCount);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/smoothlife/
example.js 225 $('threadCount').addEventListener('change', function() {
319 function setThreadCount(threadCount) {
320 naclModule.postMessage({cmd: 'setThreadCount', threadCount: threadCount});
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/earth/
example.js 178 * Send the current value of the element threadCount to the NaCl module.
183 var value = parseInt($('threadCount').value);
193 $('threadCount').addEventListener('change', setThreadCount);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/voronoi/
example.js 188 * Send the current value of the element threadCount to the NaCl module.
193 var value = parseInt($('threadCount').value);
203 $('threadCount').addEventListener('change', setThreadCount);
  /external/chromium_org/third_party/icu/source/test/intltest/
intltest.cpp 515 threadCount = 1;
591 int32_t rval = this->threadCount;
592 this->threadCount = count;
1081 int32_t threadCount = 1;
1125 threadCount = atoi(str + 8);
1154 "### threads:<threadCount> (Mulithreading must first be \n"
1182 major.setThreadCount( threadCount );
    [all...]
intltest.h 227 int32_t threadCount;
  /external/icu4c/test/intltest/
intltest.cpp 531 threadCount = 1;
614 int32_t rval = this->threadCount;
615 this->threadCount = count;
1108 int32_t threadCount = 1;
1155 threadCount = atoi(str + 8);
1185 "### threads:<threadCount> (Mulithreading must first be \n"
1213 major.setThreadCount( threadCount )
    [all...]
intltest.h 276 int32_t threadCount;
  /dalvik/vm/jdwp/
JdwpHandler.cpp 262 u4 threadCount;
263 dvmDbgGetAllThreads(&pThreadIds, &threadCount);
265 expandBufAdd4BE(pReply, threadCount);
268 for (u4 i = 0; i < threadCount; i++) {
    [all...]

Completed in 1105 milliseconds

1 2