HomeSort by relevance Sort by last modified time
    Searched defs:n_threads (Results 1 - 14 of 14) sorted by null

  /external/compiler-rt/lib/tsan/benchmarks/
start_many_threads.cc 25 int n_threads; local
27 n_threads = 100;
29 n_threads = atoi(argv[1]);
31 printf("Usage: %s n_threads\n", argv[0]);
34 printf("%s: n_threads=%d\n", __FILE__, n_threads);
36 pthread_barrier_init(&all_threads_ready, NULL, n_threads + 1);
38 pthread_t *t = new pthread_t[n_threads];
39 for (int i = 0; i < n_threads; i++) {
45 for (int i = 0; i < n_threads; i++)
    [all...]
mini_bench_local.cc 27 int n_threads = 0; local
29 n_threads = 4;
32 n_threads = atoi(argv[1]);
33 assert(n_threads > 0 && n_threads <= 32);
36 printf("%s: n_threads=%d len=%d iter=%d\n",
37 __FILE__, n_threads, len, kNumIter);
38 a = new int[n_threads * len];
39 pthread_t *t = new pthread_t[n_threads];
40 for (int i = 0; i < n_threads; i++)
    [all...]
mini_bench_shared.cc 27 int n_threads = 0; local
29 n_threads = 4;
32 n_threads = atoi(argv[1]);
33 assert(n_threads > 0 && n_threads <= 32);
36 printf("%s: n_threads=%d len=%d iter=%d\n",
37 __FILE__, n_threads, len, kNumIter);
41 pthread_t *t = new pthread_t[n_threads];
42 for (int i = 0; i < n_threads; i++) {
45 for (int i = 0; i < n_threads; i++)
    [all...]
vts_many_threads_bench.cc 45 int n_threads, n_iterations; variable
62 int offset = idx * kNumMutexes / n_threads;
74 n_threads = 2;
78 n_threads = atoi(argv[1]);
79 assert(n_threads > 0 && n_threads <= 32);
84 printf("Usage: %s n_threads n_garbage_threads n_iterations\n", argv[0]);
87 printf("%s: n_threads=%d n_garbage_threads=%d n_iterations=%d\n",
88 __FILE__, n_threads, n_garbage_threads, n_iterations);
90 pthread_barrier_init(&all_threads_ready, NULL, n_garbage_threads + n_threads + 1)
    [all...]
  /external/valgrind/drd/tests/
pth_spinlock.c 37 const int n_threads = 10; local
38 pthread_t tid[n_threads];
43 pthread_barrier_init(&s_barrier, 0, n_threads);
45 for (i = 0; i < n_threads; i++)
47 for (i = 0; i < n_threads; i++)
51 if (s_counter == n_threads * s_iterations)
55 s_counter, n_threads * s_iterations);
atomic_var.c 55 const int n_threads = 2; local
56 pthread_t tid[n_threads];
61 for (i = 0; i < n_threads; i++)
tsan_unittest.cpp 5978 const int n_threads = 3; member in namespace:test125
    [all...]
  /art/test/testrunner/
run_build_test_target.py 38 parser.add_argument('-j', default='1', dest='n_threads')
59 n_threads = options.n_threads variable
68 build_command += ' -j' + str(n_threads)
85 cmd += ['-j' + str(n_threads)]
103 # run_test_command += ['-j', str(n_threads)]
  /external/libevent/
iocp-internal.h 81 short n_threads; member in struct:event_iocp_port
  /external/libunwind/src/coredump/
_UCD_internal.h 94 int n_threads; member in struct:UCD_info
_UCD_create.c 216 unsigned n_threads; local
229 n_threads = 0;
234 n_threads++;
239 ui->n_threads = n_threads;
240 ui->threads = malloc(sizeof (void *) * n_threads);
242 n_threads = 0;
247 ui->threads[n_threads++] = NOTE_DATA (note_hdr);
271 if (ui->n_threads == 0)
288 return ui->n_threads;
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 171 const int n_threads = 3000; local
173 for (int i = 0; i < n_threads; i++) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-6.c 52 static int n_threads; variable
102 pthread_t threads[n_threads];
110 it.it_value.tv_sec = n_threads / 20;
111 it.it_value.tv_usec = (n_threads % 20) * 50000;
125 for (i = 0; i < n_threads; i++) {
141 for (i = 0; i < n_threads; i++)
243 n_threads = get_ncpu();
244 if (n_threads == -1) {
249 n_threads);
252 n_threads = 1
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 137 uptr n_threads; local
139 ctx->thread_registry->GetNumberOfThreads(&n_threads, &n_running_threads);
141 WriteMemoryProfile(buf.data(), buf.size(), n_threads, n_running_threads);

Completed in 319 milliseconds