HomeSort by relevance Sort by last modified time
    Searched refs:n_threads (Results 1 - 22 of 22) 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...]
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...]
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...]
  /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_thread_wrappers_pthread.h 503 //! Create n_threads threads, but do not start.
504 explicit ThreadPool(int n_threads)
506 for (int i = 0; i < n_threads; i++) {
556 explicit Barrier(int n_threads) {CHECK(0 == pthread_barrier_init(&b_, 0, n_threads));}
tsan_unittest.cpp 5978 const int n_threads = 3; member in namespace:test125
    [all...]
  /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...]
  /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
67 build_command += ' -j' + str(n_threads)
84 cmd += ['-j' + str(n_threads)]
99 run_test_command += ['-j', str(n_threads)]
  /external/libunwind/src/coredump/
_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...]
_UCD_internal.h 94 int n_threads; member in struct:UCD_info
  /external/libevent/
event_iocp.c 105 h = CreateIoCompletionPort((HANDLE)fd, port->port, key, port->n_threads);
188 port->n_threads = n_cpus * 2;
189 port->threads = mm_calloc(port->n_threads, sizeof(HANDLE));
203 for (i=0; i<port->n_threads; ++i) {
239 for (i=0; i<port->n_threads; ++i) {
iocp-internal.h 81 short n_threads; member in struct:event_iocp_port
  /external/toolchain-utils/crosperf/
schedv2.py 288 n_threads = max(2, min(20, (n_benchmarkruns + 3) / 4))
290 '{} benchmark runs ...').format(n_threads,
292 benchmarkruns_per_thread = (n_benchmarkruns + n_threads - 1) / n_threads
294 for i in range(n_threads - 1):
299 (n_threads - 1) * benchmarkruns_per_thread:])
  /art/
test.py 31 parser.add_argument('-j', default='', dest='n_threads', help='specify number of concurrent tests')
66 build_command += ' -j' + str(options.n_threads)
  /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/google-benchmark/src/
benchmark.cc 400 int n_threads, internal::ThreadTimer* timer,
412 threads(n_threads),
  /external/libcxx/utils/google-benchmark/src/
benchmark.cc 379 int n_threads, internal::ThreadTimer* timer,
390 threads(n_threads),
  /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);
  /external/google-benchmark/include/benchmark/
benchmark_api.h 492 int n_threads, internal::ThreadTimer* timer,
    [all...]
  /external/libcxx/utils/google-benchmark/include/benchmark/
benchmark_api.h 445 int n_threads, internal::ThreadTimer* timer,

Completed in 1100 milliseconds