/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...] |
teglMultiThreadTests.cpp | 136 MultiThreadedTest (EglTestContext& eglTestCtx, const char* name, const char* description, int threadCount, deUint64 timeoutUs); 242 MultiThreadedTest::MultiThreadedTest (EglTestContext& eglTestCtx, const char* name, const char* description, int threadCount, deUint64 timeoutUs) 244 , m_threadCount (threadCount) [all...] |
/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/tools/skpdiff/ |
SkDiffContext.h | 28 void setThreadCount(int threadCount) { fThreadCount = threadCount; }
|
/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/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/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/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 | 548 threadCount = 1; 632 int32_t rval = this->threadCount; 633 this->threadCount = count; 1182 int32_t threadCount = 1; [all...] |
intltest.h | 305 int32_t threadCount;
|
tzfmttst.cpp | 568 int32_t nThreads = threadCount; 643 TestTimeRoundTripThread **threads = new TestTimeRoundTripThread*[threadCount]; [all...] |
/external/icu/icu4c/source/test/intltest/ |
intltest.cpp | 548 threadCount = 1; 632 int32_t rval = this->threadCount; 633 this->threadCount = count; 1184 int32_t threadCount = 1; [all...] |
intltest.h | 329 int32_t threadCount;
|
tzfmttst.cpp | 568 int32_t nThreads = threadCount; 643 TestTimeRoundTripThread **threads = new TestTimeRoundTripThread*[threadCount]; [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...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
pdebuild.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | |