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

  /external/linux-tools-perf/util/
evsel.h 84 int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads);
85 int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads);
89 void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads);
131 int __perf_evsel__read(struct perf_evsel *evsel, int ncpus, int nthreads,
139 * @nthreads - Number of threads affected, from zero
142 int ncpus, int nthreads)
144 return __perf_evsel__read(evsel, ncpus, nthreads, false);
152 * @nthreads - Number of threads affected, from zero
155 int ncpus, int nthreads)
157 return __perf_evsel__read(evsel, ncpus, nthreads, true)
    [all...]
evsel.c 52 int perf_evsel__alloc_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
55 evsel->fd = xyarray__new(ncpus, nthreads, sizeof(int));
59 for (thread = 0; thread < nthreads; thread++) {
68 int perf_evsel__alloc_id(struct perf_evsel *evsel, int ncpus, int nthreads)
70 evsel->sample_id = xyarray__new(ncpus, nthreads, sizeof(struct perf_sample_id));
74 evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
105 void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
110 for (thread = 0; thread < nthreads; ++thread) {
160 int ncpus, int nthreads, bool scale)
169 for (thread = 0; thread < nthreads; thread++)
    [all...]
  /external/valgrind/main/drd/tests/
annotate_smart_pointer.cpp 308 const int nthreads = std::max(argc > 1 ? atoi(argv[1]) : 1, 1); local
314 Thread T[nthreads];
318 for (int i = 0; i < nthreads; ++i)
327 for (int i = 0; i < nthreads; ++i)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/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/i686-linux-glibc2.7-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.7-4.6/sysroot/usr/include/
thread_db.h 224 int nthreads; /* Total number of threads in use. */ member in struct:td_ta_stats
  /external/opencv/cv/src/
cvsurf.cpp 338 int nthreads = cvGetNumThreads(); local
339 #pragma omp parallel for num_threads(nthreads) schedule(dynamic)

Completed in 161 milliseconds