Home
last modified time | relevance | path

Searched refs:max_threads (Results 1 – 25 of 50) sorted by relevance

12

/external/chromium_org/base/metrics/
Dstats_table.cc97 int max_threads; member
104 int max_threads,
114 int max_threads() const { return table_header_->max_threads; } in max_threads() function in base::StatsTable::Internal
132 return &data_table_[(counter_id-1) * max_threads()]; in row()
155 int max_threads);
175 int max_threads, in New() argument
190 internal->InitializeTable(memory, size, max_counters, max_threads); in New()
229 int max_threads) { in InitializeTable() argument
238 header->max_threads = max_threads; in InitializeTable()
254 max_threads() * StatsTable::kMaxThreadNameLength; in ComputeMappedPointers()
[all …]
Dstats_table.h68 int max_threads,
/external/chromium_org/tools/stats_viewer/
Dstats_table.cs23 public int max_threads; field
185 offset += AlignedSize(header_.max_threads * kMaxThreadNameLength * 2);
187 offset += AlignedSize(header_.max_threads *
200 offset += AlignedSize(header_.max_threads *
258 for (int threads = 0; threads < header_.max_threads; threads++) { in Zero()
275 data_offset += id * (Header.max_threads * in GetValue()
278 for (int cols = 0; cols < Header.max_threads; cols++) in GetValue()
528 for (int index = 0; index < table_.Header.max_threads; index++) { in Initialize()
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
Dthread_map.c64 int max_threads = 32, items, i; in thread_map__new_by_uid() local
68 max_threads * sizeof(pid_t)); in thread_map__new_by_uid()
100 while (threads->nr + items >= max_threads) { in thread_map__new_by_uid()
101 max_threads *= 2; in thread_map__new_by_uid()
109 max_threads * sizeof(pid_t))); in thread_map__new_by_uid()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_clip_state.c84 clip->thread4.max_threads = 16 - 1; in brw_upload_clip_unit()
86 clip->thread4.max_threads = 2 - 1; in brw_upload_clip_unit()
89 clip->thread4.max_threads = 1 - 1; in brw_upload_clip_unit()
Dbrw_gs_state.c75 gs->thread4.max_threads = 1; in brw_upload_gs_unit()
77 gs->thread4.max_threads = 0; in brw_upload_gs_unit()
Dbrw_state_dump.c91 vs->thread4.max_threads + 1); in dump_vs_state()
107 gs->thread4.max_threads + 1); in dump_gs_state()
123 clip->thread4.max_threads + 1); in dump_clip_state()
143 sf->thread4.max_threads + 1); in dump_sf_state()
167 wm->wm5.max_threads + 1); in dump_wm_state()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dbrw_clip_state.c84 clip->thread4.max_threads = 16 - 1; in brw_upload_clip_unit()
86 clip->thread4.max_threads = 2 - 1; in brw_upload_clip_unit()
89 clip->thread4.max_threads = 1 - 1; in brw_upload_clip_unit()
Dbrw_gs_state.c75 gs->thread4.max_threads = 1; in brw_upload_gs_unit()
77 gs->thread4.max_threads = 0; in brw_upload_gs_unit()
Dbrw_state_dump.c91 vs->thread4.max_threads + 1); in dump_vs_state()
107 gs->thread4.max_threads + 1); in dump_gs_state()
123 clip->thread4.max_threads + 1); in dump_clip_state()
143 sf->thread4.max_threads + 1); in dump_sf_state()
167 wm->wm5.max_threads + 1); in dump_wm_state()
/external/chromium_org/base/test/
Dsequenced_worker_pool_owner.cc13 size_t max_threads, in SequencedWorkerPoolOwner() argument
16 pool_(new SequencedWorkerPool(max_threads, thread_name_prefix, this)), in SequencedWorkerPoolOwner()
Dsequenced_worker_pool_owner.h30 SequencedWorkerPoolOwner(size_t max_threads,
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
Dlinuxthreads.cc253 int max_threads = 0, sig; in ListerThread() local
345 if (max_threads < proc_sb.st_nlink + 100) in ListerThread()
346 max_threads = proc_sb.st_nlink + 100; in ListerThread()
349 pid_t pids[max_threads]; in ListerThread()
415 if (num_threads >= max_threads) { in ListerThread()
507 max_threads += 100; in ListerThread()
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
Dlinuxthreads.cc253 int max_threads = 0, sig; in ListerThread() local
345 if (max_threads < proc_sb.st_nlink + 100) in ListerThread()
346 max_threads = proc_sb.st_nlink + 100; in ListerThread()
349 pid_t pids[max_threads]; in ListerThread()
415 if (num_threads >= max_threads) { in ListerThread()
507 max_threads += 100; in ListerThread()
/external/eigen/Eigen/src/Core/products/
DParallelizer.h114 Index max_threads = std::max<Index>(1,size / 32); in parallelize_gemm()
117 Index threads = std::min<Index>(nbThreads(), max_threads); in parallelize_gemm()
/external/chromium_org/base/threading/
Dsequenced_worker_pool.h165 SequencedWorkerPool(size_t max_threads,
170 SequencedWorkerPool(size_t max_threads,
Dsequenced_worker_pool.cc271 Inner(SequencedWorkerPool* worker_pool, size_t max_threads,
517 size_t max_threads, in Inner() argument
524 max_threads_(max_threads), in Inner()
1145 size_t max_threads, in SequencedWorkerPool() argument
1148 inner_(new Inner(this, max_threads, thread_name_prefix, NULL)) { in SequencedWorkerPool()
1152 size_t max_threads, in SequencedWorkerPool() argument
1156 inner_(new Inner(this, max_threads, thread_name_prefix, observer)) { in SequencedWorkerPool()
/external/opencv/cv/src/
DmycvHaarDetectObjects.cpp717 int max_threads = cvGetNumThreads(); in mycvSetImagesForHaarClassifierCascade() local
718 #pragma omp parallel for num_threads(max_threads) schedule(dynamic) in mycvSetImagesForHaarClassifierCascade()
885 int i, max_threads = 0; in mycvHaarDetectObjects() local
942 max_threads = cvGetNumThreads(); in mycvHaarDetectObjects()
943 if( max_threads > 1 ) in mycvHaarDetectObjects()
944 for( i = 0; i < max_threads; i++ ) in mycvHaarDetectObjects()
1217 #pragma omp parallel for num_threads(max_threads) schedule(dynamic) in mycvHaarDetectObjects()
1283 if( max_threads > 1 ) in mycvHaarDetectObjects()
1284 for( i = 0; i < max_threads; i++ ) in mycvHaarDetectObjects()
1554 if( max_threads > 1 ) in mycvHaarDetectObjects()
[all …]
/external/libvpx/libvpx/vp8/common/
Donyxd.h35 int max_threads; member
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
Donyxd.h35 int max_threads; member
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
Dvp9_decoder.h52 int max_threads; member
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decoder.h34 int max_threads; member
/external/chromium_org/v8/tools/
Dstats-viewer.py430 self.max_threads = data.IntAt(12)
432 self._HEADER_SIZE + self.max_threads * (self._THREAD_NAME_SIZE + 2 * 4)
447 value_offset = self.counter_values_offset + i * self.max_threads * 4
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
Dprtpool.h63 PR_CreateThreadPool(PRInt32 initial_threads, PRInt32 max_threads,
/external/libvpx/libvpx/vp8/decoder/
Donyxd_int.h85 int max_threads; member

12