Home
last modified time | relevance | path

Searched refs:threadCount (Results 1 – 25 of 41) sorted by relevance

12

/external/deqp/modules/egl/
DteglGLES2SharedRenderingPerfTests.cpp73 int threadCount; member
855 …for (int threadNdx = 0; threadNdx < m_config.threadCount * m_config.perThreadContextCount; threadN… in init()
882 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vecto… in createThreads() argument
884 DE_ASSERT(threadCount * perThreadContextCount == (int)contexts.size()); in createThreads()
889 for (int threadNdx = 0; threadNdx < threadCount; threadNdx++) in createThreads()
984 …wCallCount * config.frameCount * config.perThreadContextCount * config.threadCount << TestLog::End… in logTestConfig()
985 …log << TestLog::Message << "Number of threads: " << config.threadCount << TestLog::EndMess… in logTestConfig()
1039 createThreads(threads, m_config.threadCount, m_config.perThreadContextCount, m_contexts); in iterate()
1087 basicConfig.threadCount = 1; in init()
1122 int threadCount = threadCounts[threadCountNdx]; in init() local
[all …]
/external/testng/src/test/java/test/thread/
DSequentialTest.java44 public void verifySequential(int threadCount) { in verifySequential() argument
45 runTest(threadCount, in verifySequential()
51 public void verifySingleThreaded(int threadCount) { in verifySingleThreaded() argument
52 runTest(threadCount, in verifySingleThreaded()
58 private void runTest(int threadCount, String... classes) { in runTest() argument
65 setThreadCount(threadCount); in runTest()
90 Assert.assertEquals(verifyMap.size(), threadCount); in runTest() local
92 ppp("COUNT:" + threadCount + " THREAD ID'S:" + ids[0] + " " + ids[1] + " " + ids[2]); in runTest()
DMultiThreadedDependentTest.java69 private void test(int threadCount) { in test() argument
73 tng.setThreadCount(threadCount); in test()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DThreadGroup002Test.java168 for (int threadCount = 0; threadCount < testedThreadsNumber; threadCount++) { in testThreadGroup002()
169 logWriter.println("\n==> Check for Thread: threadID = " + testedThreadsIDs[threadCount] in testThreadGroup002()
170 + "; threadName = " + testedThreadsNames[threadCount]); in testThreadGroup002()
175 packet.setNextValueAsReferenceTypeID(testedThreadsIDs[threadCount]); in testThreadGroup002()
193 packet.setNextValueAsThreadID(testedThreadsIDs[threadCount]); in testThreadGroup002()
204 if ( threadCount >= finishedTestedThreadsNumber ) { in testThreadGroup002()
206 logWriter.println("## Thread witn number = " + threadCount + in testThreadGroup002()
219 if ( threadCount < finishedTestedThreadsNumber ) { in testThreadGroup002()
221 logWriter.println("## Thread witn number = " + threadCount + in testThreadGroup002()
249 if ( ! testedThreadGroupsNames[threadCount].equals(threadGroupName) ) { in testThreadGroup002()
[all …]
/external/deqp/modules/gles31/functional/
Des31fAtomicCounterTests.cpp94 , threadCount (0) in TestSpec()
104 int threadCount; member
122 deUint32 getInitialValue (void) const { return m_spec.callCount * m_spec.threadCount + 1; } in getInitialValue()
242 src << " uint preGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource()
245 …src << " uint increment[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource()
248 …src << " uint decrement[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource()
251 src << " uint postGet[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource()
254 src << " uint get[" << spec.threadCount * spec.atomicCounterCount * spec.callCount << "];\n"; in generateShaderSource()
537 … + (m_spec.useBranches ? m_spec.threadCount*m_spec.callCount - m_spec.threadCount*m_spec.callCount… in checkAndLogCounterValues()
540 … - (m_spec.useBranches ? m_spec.threadCount*m_spec.callCount - m_spec.threadCount*m_spec.callCount… in checkAndLogCounterValues()
[all …]
/external/testng/src/main/java/org/testng/internal/thread/
DExecutorAdapter.java18 public ExecutorAdapter(int threadCount, IThreadFactory tf) { in ExecutorAdapter() argument
19 super(threadCount, in ExecutorAdapter()
20 threadCount, in ExecutorAdapter()
55 int threadCount = threads.size(); in getStackTraces() local
56 StackTraceElement[][] result = new StackTraceElement[threadCount][]; in getStackTraces()
DThreadUtil.java92 public static final IExecutor createExecutor(int threadCount, String threadFactoryName) { in createExecutor() argument
93 return new ExecutorAdapter(threadCount, createFactory(threadFactoryName)); in createExecutor()
/external/swiftshader/src/Main/
DSwiftConfig.cpp375 …html += "<option value='-1'" + (config.threadCount == -1 ? selected : empty) + ">Core count</optio… in page()
376 …html += "<option value='0'" + (config.threadCount == 0 ? selected : empty) + ">Process affinity … in page()
377 html += "<option value='1'" + (config.threadCount == 1 ? selected : empty) + ">1</option>\n"; in page()
378 html += "<option value='2'" + (config.threadCount == 2 ? selected : empty) + ">2</option>\n"; in page()
379 html += "<option value='3'" + (config.threadCount == 3 ? selected : empty) + ">3</option>\n"; in page()
380 html += "<option value='4'" + (config.threadCount == 4 ? selected : empty) + ">4</option>\n"; in page()
381 html += "<option value='5'" + (config.threadCount == 5 ? selected : empty) + ">5</option>\n"; in page()
382 html += "<option value='6'" + (config.threadCount == 6 ? selected : empty) + ">6</option>\n"; in page()
383 html += "<option value='7'" + (config.threadCount == 7 ? selected : empty) + ">7</option>\n"; in page()
384 html += "<option value='8'" + (config.threadCount == 8 ? selected : empty) + ">8</option>\n"; in page()
[all …]
DSwiftConfig.hpp45 int threadCount; member
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
DCrawler.java52 private void parallelDrainQueue(int threadCount) { in parallelDrainQueue() argument
53 ExecutorService executor = Executors.newFixedThreadPool(threadCount); in parallelDrainQueue()
54 for (int i = 0; i < threadCount; i++) { in parallelDrainQueue()
120 int threadCount = 20; in main() local
129 crawler.parallelDrainQueue(threadCount); in main()
/external/dng_sdk/source/
Ddng_opcodes.cpp306 virtual void Start (uint32 threadCount, in Start() argument
312 dng_filter_task::Start (threadCount, in Start()
318 threadCount, in Start()
446 virtual void Start (uint32 threadCount, in Start() argument
455 for (uint32 threadIndex = 0; threadIndex < threadCount; threadIndex++) in Start()
463 threadCount, in Start()
Ddng_jpeg_image.cpp225 uint32 threadCount = Min_uint32 (tileCount, in Encode() local
236 dng_rect (0, 0, 16, 16 * threadCount)); in Encode()
338 uint32 threadCount = Min_uint32 (tileCount, in FindDigest() local
346 dng_rect (0, 0, 16, 16 * threadCount)); in FindDigest()
Ddng_area_task.h133 virtual void Start (uint32 threadCount,
157 virtual void Finish (uint32 threadCount);
Ddng_filter_task.cpp58 void dng_filter_task::Start (uint32 threadCount, in Start() argument
71 for (uint32 threadIndex = 0; threadIndex < threadCount; threadIndex++) in Start()
Ddng_bad_pixels.h65 uint32 threadCount,
269 uint32 threadCount,
Ddng_render.cpp751 virtual void Start (uint32 threadCount,
816 void dng_render_task::Start (uint32 threadCount, in Start() argument
822 dng_filter_task::Start (threadCount, in Start()
978 for (uint32 threadIndex = 0; threadIndex < threadCount; threadIndex++) in Start()
Ddng_resample.cpp518 virtual void Start (uint32 threadCount,
628 void dng_resample_task::Start (uint32 threadCount, in Start() argument
677 for (uint32 threadIndex = 0; threadIndex < threadCount; threadIndex++) in Start()
686 dng_filter_task::Start (threadCount, in Start()
Ddng_filter_task.h128 virtual void Start (uint32 threadCount,
/external/deqp/scripts/
Dlaunchcontrol_build.py59 threadCount = multiprocessing.cpu_count() + 1
60 print "Invoke make with %d threads" % threadCount
61 execute(["make", "-j%d" % threadCount])
/external/guice/core/test/com/google/inject/
DPerformanceComparison.java177 int threadCount = 10; in concurrentlyIterate() local
180 Thread[] threads = new Thread[threadCount]; in concurrentlyIterate()
182 for (int i = 0; i < threadCount; i++) { in concurrentlyIterate()
200 for (int i = 0; i < threadCount; i++) { in concurrentlyIterate()
204 for (int i = 0; i < threadCount; i++) { in concurrentlyIterate()
/external/testng/src/main/java/org/testng/xml/
DTestNGContentHandler.java190 String threadCount = attributes.getValue("thread-count"); in xmlSuite() local
191 if (null != threadCount) { in xmlSuite()
192 m_currentSuite.setThreadCount(Integer.parseInt(threadCount)); in xmlSuite()
308 String threadCount = attributes.getValue("thread-count"); in xmlTest() local
309 if(null != threadCount) { in xmlTest()
310 m_currentTest.setThreadCount(Integer.parseInt(threadCount)); in xmlTest()
/external/swiftshader/src/Renderer/
DRenderer.cpp65 int threadCount = 1; variable
652 if(threadCount == 1) // Use main thread for draw execution in draw()
815 if((int)qSize < threadCount - threadsAwake + 1) in scheduleTask()
825 if(threadsAwake != threadCount) in scheduleTask()
829 for(int i = 0; i < threadCount && wakeup > 0; i++) in scheduleTask()
1973 unitCount = ceilPow2(threadCount); in initializeThreads()
1974 clusterCount = ceilPow2(threadCount); in initializeThreads()
1982 for(int i = 0; i < threadCount; i++) in initializeThreads()
2011 for(int thread = 0; thread < threadCount; thread++) in terminateThreads()
2615 return threadCount; in getThreadCount()
[all …]
/external/testng/src/main/java/org/testng/
DTestNG.java462 public void setThreadCount(int threadCount) { in setThreadCount() argument
463 if(threadCount < 1) { in setThreadCount()
464 exitWithError("Cannot use a threadCount parameter less than 1; 1 > " + threadCount); in setThreadCount()
467 m_threadCount = threadCount; in setThreadCount()
1453 if (cla.threadCount != null) { in configure()
1454 setThreadCount(cla.threadCount); in configure()
1590 String threadCount = (String) cmdLineArgs.get(CommandLineArgs.THREAD_COUNT); in configure() local
1591 if (threadCount != null) { in configure()
1592 result.threadCount = Integer.parseInt(threadCount); in configure()
/external/icu/icu4c/source/test/intltest/
Dintltest.cpp558 threadCount = 12; in IntlTest()
574 threadCount = caller->threadCount; in setCaller()
643 int32_t rval = this->threadCount; in setThreadCount()
644 this->threadCount = count; in setThreadCount()
1208 int32_t threadCount = 12; in main() local
1263 threadCount = atoi(str + 8); in main()
1319 major.setThreadCount( threadCount ); in main()
1357 fprintf(stdout, " Threads : %d\n", threadCount); in main()
/external/jcommander/src/test/java/com/beust/jcommander/args/
DCommandLineArgs.java67 public Integer threadCount; field in CommandLineArgs

12