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

  /ndk/tests/device/test-openmp/jni/
openmp2.c 8 int nthreads, tid; local
11 #pragma omp parallel default(shared) private(nthreads, tid)
20 nthreads = omp_get_num_threads();
21 printf("Number of threads = %d\n", nthreads);
  /external/fio/profiles/
tiobench.c 8 static unsigned int nthreads = 1; variable
29 unsigned int nthreads; member in struct:tiobench_options
77 .off1 = offsetof(struct tiobench_options, nthreads),
109 sprintf(t_idx, "numjobs=%u", nthreads);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
evsel.h 136 int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads);
137 int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads);
143 void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads);
159 int perf_evsel__set_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
161 int perf_evsel__enable(struct perf_evsel *evsel, int ncpus, int nthreads);
169 void perf_evsel__close(struct perf_evsel *evsel, int ncpus, int nthreads);
229 int __perf_evsel__read(struct perf_evsel *evsel, int ncpus, int nthreads,
237 * @nthreads - Number of threads affected, from zero
240 int ncpus, int nthreads)
242 return __perf_evsel__read(evsel, ncpus, nthreads, false)
    [all...]
evsel.c 700 int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
703 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
707 for (thread = 0; thread < nthreads; thread++) {
716 static int perf_evsel__run_ioctl(struct perf_evsel *evsel, int ncpus, int nthreads,
722 for (thread = 0; thread < nthreads; thread++) {
734 int perf_evsel__set_filter(struct perf_evsel *evsel, int ncpus, int nthreads,
737 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
742 int perf_evsel__enable(struct perf_evsel *evsel, int ncpus, int nthreads)
744 return perf_evsel__run_ioctl(evsel, ncpus, nthreads,
749 int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
    [all...]
evlist.c 774 nthreads = thread_map__nr(evlist->threads); local
780 err = perf_evsel__set_filter(evsel, ncpus, nthreads, evsel->filter);
793 nthreads = thread_map__nr(evlist->threads); local
796 err = perf_evsel__set_filter(evsel, ncpus, nthreads, filter);
929 int nthreads = thread_map__nr(evlist->threads); local
932 perf_evsel__close(evsel, ncpus, nthreads);
  /external/jemalloc/include/jemalloc/internal/
ctl.h 35 unsigned nthreads; member in struct:ctl_arena_stats_s
arena.h 310 unsigned nthreads; member in struct:arena_s
315 * 1) Thread asssignment (modifies nthreads) is protected by
    [all...]
  /external/valgrind/main/drd/tests/
annotate_smart_pointer.cpp 309 const int nthreads = std::max(argc > 1 ? atoi(argv[1]) : 1, 1); local
315 std::vector<Thread> T(nthreads);
  /device/asus/flo/camera/hdr/include/
morpho_easy_hdr.h 186 * @param[in] nthreads ?g?p?X???b?h?? (?R?A??)
196 int nthreads,
246 * ???????s??(initialize() ?? nthreads ?? 0 ???w???????)???L??
  /device/lge/hammerhead/camera/hdr/include/
morpho_easy_hdr.h 186 * @param[in] nthreads ?g?p?X???b?h?? (?R?A??)
196 int nthreads,
246 * ???????s??(initialize() ?? nthreads ?? 0 ???w???????)???L??
  /device/lge/mako/camera/hdr/include/
morpho_easy_hdr.h 186 * @param[in] nthreads ?g?p?X???b?h?? (?R?A??)
196 int nthreads,
246 * ???????s??(initialize() ?? nthreads ?? 0 ???w???????)???L??
  /external/jemalloc/src/
ctl.c 378 {NAME("nthreads"), CTL(stats_arenas_i_nthreads)},
539 sstats->nthreads += astats->nthreads;
640 ctl_stats.arenas[ctl_stats.narenas].nthreads = 0;
647 ctl_stats.arenas[i].nthreads = arenas[i]->nthreads;
649 ctl_stats.arenas[i].nthreads = 0;
    [all...]
stats.c 208 unsigned nthreads; local
221 CTL_I_GET("stats.arenas.0.nthreads", &nthreads, unsigned);
223 "assigned threads: %u\n", nthreads);
jemalloc.c 162 if (arenas[i]->nthreads <
163 arenas[choose]->nthreads)
179 if (arenas[choose]->nthreads == 0
190 ret->nthreads++;
195 ret->nthreads++;
269 arena->nthreads--;
    [all...]
arena.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
thread_db.h 224 int nthreads; /* Total number of threads in use. */ member in struct:td_ta_stats
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
thread_db.h 224 int nthreads; /* Total number of threads in use. */ member in struct:td_ta_stats
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bz2.py 304 nthreads = 10
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bz2.py 304 nthreads = 10
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
  /external/jemalloc/test/unit/
mallctl.c 382 TEST_STATS_ARENAS(unsigned, nthreads);
  /external/opencv/cv/src/
cvsurf.cpp 338 int nthreads = cvGetNumThreads(); local
339 #pragma omp parallel for num_threads(nthreads) schedule(dynamic)
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-stat.c 433 nthreads = thread_map__nr(evsel_list->threads); local
437 perf_evsel__enable(counter, ncpus, nthreads);
    [all...]

Completed in 528 milliseconds