HomeSort by relevance Sort by last modified time
    Searched full:ncpus (Results 1 - 9 of 9) 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);
86 int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus);
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,
138 * @ncpus - Number of cpus affected, from zero
142 int ncpus, int nthreads)
144 return __perf_evsel__read(evsel, ncpus, nthreads, false);
151 * @ncpus - Number of cpus affected, from zero
155 int ncpus, int nthreads
    [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));
58 for (cpu = 0; cpu < ncpus; cpu++) {
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));
84 int perf_evsel__alloc_counts(struct perf_evsel *evsel, int ncpus)
87 (ncpus * sizeof(struct perf_counts_values))));
105 void perf_evsel__close_fd(struct perf_evsel *evsel, int ncpus, int nthreads)
109 for (cpu = 0; cpu < ncpus; cpu++
    [all...]
  /external/llvm/utils/lit/lit/
Util.py 11 ncpus = os.sysconf("SC_NPROCESSORS_ONLN")
12 if isinstance(ncpus, int) and ncpus > 0:
13 return ncpus
18 ncpus = int(os.environ["NUMBER_OF_PROCESSORS"])
19 if ncpus > 0:
20 return ncpus
  /external/blktrace/
blktrace.c 96 int fd, idx, ncpus; member in struct:devpath
218 int fd, ncpus; member in struct:cl_conn
277 static int ncpus; variable
866 hdr.max_cpus = ncpus;
1009 cl_fds = calloc(ncpus, sizeof(*cl_fds));
1010 for (cpu = 0; cpu < ncpus; cpu++) {
1029 for (cpu = 0, fdp = cl_fds; cpu < ncpus; cpu++, fdp++) {
1052 dpp->ncpus = ncpus;
1056 dpp->stats = calloc(dpp->ncpus, sizeof(*dpp->stats))
    [all...]
blkparse.c 64 int ncpus; member in struct:per_dev_info
324 int ncpus = pdi->ncpus; local
338 new_start = (char *)cpus + (ncpus * sizeof(struct per_cpu_info));
339 new_space = (new_count - ncpus) * sizeof(struct per_cpu_info);
342 pdi->ncpus = new_count;
345 for (new_count = 0; new_count < pdi->ncpus; new_count++) {
361 if (cpu >= pdi->ncpus)
490 for (cpu = 0; cpu < pdi->ncpus; cpu++) {
    [all...]
  /external/netperf/
netcpu_kstat.c 147 kn = kstat_data_lookup(ks, "ncpus");
183 /* note that ncpu could be less than ncpus, but that's okay */
  /external/blktrace/btreplay/
btreplay.c 145 static int ncpus = 0; // Number of CPUs in the system variable
501 * get_ncpus - Sets up the global 'ncpus' value
516 for (ncpus = 0; ncpus < CPU_SETSIZE && CPU_ISSET(ncpus, &cpus); ncpus++)
518 if (ncpus == 0) {
532 assert(0 <= tip->cpu && tip->cpu < ncpus);
547 for (i = 0; i < ncpus; i++)
863 assert(0 <= cpu && cpu < ncpus);
    [all...]
  /external/linux-tools-perf/
builtin-test.c 408 pr_debug("perf_evsel__alloc_counts(ncpus=%d)\n", cpus->nr);
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 155 static final int NCPUS = Runtime.getRuntime().availableProcessors();
164 static final int maxTimedSpins = (NCPUS < 2) ? 0 : 32;
    [all...]

Completed in 258 milliseconds