/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/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)
|
/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/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??
|
/hardware/qcom/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??
|
/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
|
/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/opencv/cv/src/ |
cvsurf.cpp | 338 int nthreads = cvGetNumThreads(); local 339 #pragma omp parallel for num_threads(nthreads) schedule(dynamic)
|