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

  /prebuilts/go/darwin-x86/misc/cgo/test/
cthread_unix.c 22 doAdd(int max, int nthread)
28 if(nthread > MaxThread)
29 nthread = MaxThread;
30 for(i=0; i<nthread; i++)
32 for(i=0; i<nthread; i++)
cthread_windows.c 23 doAdd(int max, int nthread)
29 if(nthread > MaxThread)
30 nthread = MaxThread;
31 for(i=0; i<nthread; i++)
33 for(i=0; i<nthread; i++) {
  /prebuilts/go/linux-x86/misc/cgo/test/
cthread_unix.c 22 doAdd(int max, int nthread)
28 if(nthread > MaxThread)
29 nthread = MaxThread;
30 for(i=0; i<nthread; i++)
32 for(i=0; i<nthread; i++)
cthread_windows.c 23 doAdd(int max, int nthread)
29 if(nthread > MaxThread)
30 nthread = MaxThread;
31 for(i=0; i<nthread; i++)
33 for(i=0; i<nthread; i++) {
  /external/ltp/testcases/realtime/perf/latency/
run_auto.sh 25 nthread=5000
30 echo "number of threads = $nthread " | tee -a $LOG_FILE
35 rm -f $nthread.$iter.$nproc.*.out
38 ./pthread_cond_many --realtime --broadcast -i $iter -n $nthread > $nthread.$iter.$nproc.$i.out &
42 ./pthread_cond_many --broadcast -i $iter -n $nthread > $nthread.$iter.$nproc.$i.out &
  /external/valgrind/drd/tests/
pth_barrier.c 66 /** Actual test, consisting of nthread threads. */
67 static void barriers_and_races(const int nthread, const int iterations)
75 t = malloc(nthread * sizeof(struct threadinfo));
81 pthread_barrier_init(&b, 0, nthread);
87 for (i = 0; i < nthread; i++)
95 i, nthread, strerror(res));
102 for (i = 0; i < nthread; i++)
115 int nthread; local
118 nthread = (argc > 1) ? atoi(argv[1]) : 2;
122 barriers_and_races(nthread, iterations)
    [all...]
annotate_barrier.c 124 /* Actual test, consisting of nthread threads. */
125 static void barriers_and_races(const int nthread, const int iterations)
133 t = malloc(nthread * sizeof(struct threadinfo));
139 barrier_init(&b, nthread);
141 for (i = 0; i < nthread; i++)
151 for (i = 0; i < nthread; i++)
162 int nthread; local
165 nthread = (argc > 1) ? atoi(argv[1]) : 2;
169 barriers_and_races(nthread, iterations);
omp_matinv.c 289 int nthread = 1; local
304 case 't': nthread = atoi(optarg); break;
319 assert(nthread >= 1);
321 omp_set_num_threads(nthread);
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform_windows.cc 31 void WriteMemoryProfile(char *buf, uptr buf_size, uptr nthread, uptr nlive) {
tsan_platform_mac.cc 110 void WriteMemoryProfile(char *buf, uptr buf_size, uptr nthread, uptr nlive) {
tsan_platform_linux.cc 113 void WriteMemoryProfile(char *buf, uptr buf_size, uptr nthread, uptr nlive) {
125 nlive, nthread);
tsan_rtl.cc 452 uptr nthread = 0; local
453 ctx->thread_registry->GetNumberOfThreads(0, 0, &nthread /* alive threads */);
455 " parent had %d threads\n", (int)internal_getpid(), (int)nthread);
456 if (nthread == 1) {
tsan_platform.h 759 void WriteMemoryProfile(char *buf, uptr buf_size, uptr nthread, uptr nlive);

Completed in 356 milliseconds