HomeSort by relevance Sort by last modified time
    Searched refs:numThreads (Results 1 - 23 of 23) sorted by null

  /external/icu4c/test/threadtest/
threadtest.cpp 159 int numThreads;
220 gRunInfo.numThreads = 2;
241 gRunInfo.numThreads = atoi(argv[argnum]);
242 if (gRunInfo.numThreads < 0)
401 if (gRunInfo.numThreads == 0)
408 gThreadInfo = new ThreadInfo[gRunInfo.numThreads];
410 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
445 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
457 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
518 for (threadNum=0; threadNum < gRunInfo.numThreads; threadNum++)
    [all...]
  /libcore/luni/src/test/java/tests/support/
ThreadPool.java 32 public ThreadPool(int numThreads) {
39 for (int i = 0; i < numThreads; i++) {
  /external/aac/libAACdec/src/
aacdec_drc_types.h 154 USHORT numThreads; /* The number of DRC data threads extracted from the found payload elements */
aacdec_drc.cpp 132 self->numThreads = 0;
634 self->numThreads = 0;
637 for (i = 0; i < self->numPayloads && self->numThreads < MAX_DRC_THREADS; i++) {
642 FDKmemclear(&threadBs[self->numThreads], sizeof(CDrcPayload));
643 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1;
647 &threadBs[self->numThreads],
650 self->numThreads++;
661 FDKmemclear(&threadBs[self->numThreads], sizeof(CDrcPayload));
662 threadBs[self->numThreads].channelData.bandTop[0] = (1024 >> 2) - 1;
666 &threadBs[self->numThreads],
    [all...]
  /external/llvm/utils/lit/lit/
main.py 132 def runTests(numThreads, litConfig, provider, display):
135 if numThreads == 1:
142 for i in range(numThreads)]
163 parser.add_option("-j", "--threads", dest="numThreads", metavar="N",
245 if opts.numThreads is None:
246 # Python <2.5 has a race condition causing lit to always fail with numThreads>1
251 opts.numThreads = Util.detectCPUs()
253 opts.numThreads = 1
321 opts.numThreads = min(len(tests), opts.numThreads)
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 267 final int numThreads = 3;
268 final Thread[] threads = new Thread[numThreads];
298 while (waitingThreads() != numThreads - 1) {
314 for (int i = 0; i < numThreads; i++) {
349 final int numThreads = 10;
351 Thread[] threads = new Thread[numThreads];
352 for (int i = 0; i < numThreads; i++) {
368 assertEquals(numThreads * iterations + 1, (int) nonThreadSafe.get());
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
mcLoadFormat.h 124 uint32_t numThreads; /**<
  /libcore/luni/src/test/java/tests/java/sql/
MultiThreadAccessTest.java 41 private static final int numThreads = 10;
57 threadPool = new ThreadPool(numThreads);
116 * the database. Number of threads is defined by numThreads variable
121 for (int i = 0; i < numThreads; i++) {
128 * tables in the database. Number of threads is defined by numThreads
142 * numThreads variable
197 * the database. Number of threads is defined by numThreads variable
216 for (int i = 0; i < numThreads; i++) {
222 double expectedVal = id + numThreads;
  /external/skia/tools/
bench_pictures_main.cpp 128 " [--multi numThreads]\n"
184 " --multi numThreads : Set the number of threads for multi threaded drawing. Must be greater\n"
282 int numThreads = 1;
339 numThreads = atoi(*argv);
340 if (numThreads < 2) {
597 if (numThreads > 1 && !useTiles) {
634 } else if (numThreads > 1) {
635 tiledRenderer = SkNEW_ARGS(sk_tools::MultiCorePictureRenderer, (numThreads));
703 if (numThreads > 1) {
render_pictures_main.cpp 327 int numThreads = 1;
482 numThreads = atoi(*argv);
483 if (numThreads < 2) {
568 if (numThreads > 1 && !useTiles) {
606 } else if (numThreads > 1) {
607 tiledRenderer = SkNEW_ARGS(sk_tools::MultiCorePictureRenderer, (numThreads));
674 if (numThreads > 1) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 116 int numThreads = initialThreadGroup.activeCount();
117 Thread[] listOfThreads = new Thread[numThreads];
120 assertEquals(numThreads, countThread);
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 158 int numThreads = maxThreadId + 1;
163 callStack = (stack *) malloc(sizeof(stack) * numThreads);
165 for (ii = 0; ii < numThreads; ++ii) {
TraceDump.c 186 int numThreads;
756 pKeys->numThreads = count;
906 qsort(pKeys->threads, pKeys->numThreads, sizeof(pKeys->threads[0]),
995 printf("Threads (%d):\n", pKeys->numThreads);
996 for (i = 0; i < pKeys->numThreads; i++) {
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QsbApplication.java 243 protected Factory<Executor> createExecutorFactory(final int numThreads) {
247 return Executors.newFixedThreadPool(numThreads, threadFactory);
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 327 if (args.numThreads > 1) {
328 threadPool = Executors.newFixedThreadPool(args.numThreads);
344 if (args.numThreads > 1) {
394 if (args.numThreads > 1) {
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 57 private static final int numThreads = 10;
238 ThreadPool threadPool = new ThreadPool(numThreads);
307 ThreadPool threadPool = new ThreadPool(numThreads);
359 // threadPool = new ThreadPool(numThreads);
392 ThreadPool threadPool = new ThreadPool(numThreads);
443 threadPool = new ThreadPool(numThreads);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /external/chromium-trace/
script.js     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 571 milliseconds