HomeSort by relevance Sort by last modified time
    Searched full:max_threads (Results 1 - 25 of 51) sorted by null

1 2 3

  /ndk/sources/cxx-stl/gabi++/tests/
test_guard.cpp 9 #define MAX_THREADS 100
30 static Foo* sInstances[MAX_THREADS];
31 static pthread_t sThreads[MAX_THREADS];
43 for (int nn = 0; nn < MAX_THREADS; nn++) {
47 for (int nn = 0; nn < MAX_THREADS; nn++) {
66 for (int nn = 0; nn < MAX_THREADS; nn++) {
  /external/chromium_org/base/test/
sequenced_worker_pool_owner.cc 13 size_t max_threads,
16 pool_(new SequencedWorkerPool(max_threads, thread_name_prefix, this)),
sequenced_worker_pool_owner.h 30 SequencedWorkerPoolOwner(size_t max_threads,
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 67 #define MAX_THREADS 16
73 pthread_t threads[MAX_THREADS];
78 for (nn = 0; nn < MAX_THREADS; nn++) {
81 for (nn = 0; nn < MAX_THREADS; nn++) {
test_sem_post.c 55 #define MAX_THREADS 50
59 pthread_t t[MAX_THREADS];
69 for ( nn = 0; nn < MAX_THREADS; nn++ ) {
77 for (nn = 0; nn < MAX_THREADS; nn++) {
81 for ( nn = 0; nn < MAX_THREADS; nn++) {
  /external/chromium/base/metrics/
stats_table.cc 101 int max_threads; member in struct:base::StatsTable::Private::TableHeader
107 int max_threads, int max_counters);
116 int max_threads() const { return table_header_->max_threads; } function in class:base::StatsTable::Private
134 return &data_table_[(counter_id-1) * max_threads()];
151 int max_threads);
168 int max_threads,
185 priv->InitializeTable(memory, size, max_counters, max_threads);
196 int max_threads) {
205 header->max_threads = max_threads
    [all...]
stats_table.h 43 // max_threads is the maximum number of threads the table will support.
48 StatsTable(const std::string& name, int max_threads, int max_counters);
  /external/chromium_org/base/metrics/
stats_table.cc 101 int max_threads; member in struct:base::StatsTable::Private::TableHeader
107 int max_threads, int max_counters);
116 int max_threads() const { return table_header_->max_threads; } function in class:base::StatsTable::Private
134 return &data_table_[(counter_id-1) * max_threads()];
151 int max_threads);
168 int max_threads,
182 priv->InitializeTable(memory, size, max_counters, max_threads);
192 int max_threads) {
201 header->max_threads = max_threads
    [all...]
stats_table.h 42 // max_threads is the maximum number of threads the table will support.
47 StatsTable(const std::string& name, int max_threads, int max_counters);
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 23 public int max_threads; field in struct:StatsViewer.StatsFileHeader
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++) {
275 data_offset += id * (Header.max_threads *
278 for (int cols = 0; cols < Header.max_threads; cols++)
528 for (int index = 0; index < table_.Header.max_threads; index++) {
  /external/libvpx/libvpx/vp8/common/
onyxd.h 35 int max_threads; member in struct:__anon23011
  /external/libvpx/libvpx/vp9/decoder/
vp9_onyxd.h 29 int max_threads; member in struct:__anon23083
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_gs_state.c 75 gs->thread4.max_threads = 1;
77 gs->thread4.max_threads = 0;
brw_clip_state.c 84 clip->thread4.max_threads = 16 - 1;
86 clip->thread4.max_threads = 2 - 1;
89 clip->thread4.max_threads = 1 - 1;
brw_state_dump.c 91 vs->thread4.max_threads + 1);
107 gs->thread4.max_threads + 1);
123 clip->thread4.max_threads + 1);
143 sf->thread4.max_threads + 1);
167 wm->wm5.max_threads + 1);
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 114 Index max_threads = std::max<Index>(1,size / 32);
117 Index threads = std::min<Index>(nbThreads(), max_threads);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs_state.c 75 gs->thread4.max_threads = 1;
77 gs->thread4.max_threads = 0;
brw_clip_state.c 84 clip->thread4.max_threads = 16 - 1;
86 clip->thread4.max_threads = 2 - 1;
89 clip->thread4.max_threads = 1 - 1;
  /external/libvpx/libvpx/vp8/decoder/
onyxd_int.h 81 int max_threads; member in struct:VP8D_COMP
  /packages/apps/Mms/src/com/android/mms/util/
BackgroundLoaderManager.java 53 private static final int MAX_THREADS = 2;
71 final int poolSize = MAX_THREADS;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prtpool.h 63 PR_CreateThreadPool(PRInt32 initial_threads, PRInt32 max_threads,
  /external/opencv/cv/src/
mycvHaarDetectObjects.cpp 717 int max_threads = cvGetNumThreads(); local
718 #pragma omp parallel for num_threads(max_threads) schedule(dynamic)
885 int i, max_threads = 0; local
942 max_threads = cvGetNumThreads();
943 if( max_threads > 1 )
944 for( i = 0; i < max_threads; i++ )
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 90 ThreadRegistry::ThreadRegistry(ThreadContextFactory factory, u32 max_threads,
93 max_threads_(max_threads),
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
linuxthreads.cc 253 int max_threads = 0, sig; local
345 if (max_threads < proc_sb.st_nlink + 100)
346 max_threads = proc_sb.st_nlink + 100;
349 pid_t pids[max_threads];
415 if (num_threads >= max_threads) {
507 max_threads += 100;
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
linuxthreads.cc 253 int max_threads = 0, sig; local
345 if (max_threads < proc_sb.st_nlink + 100)
346 max_threads = proc_sb.st_nlink + 100;
349 pid_t pids[max_threads];
415 if (num_threads >= max_threads) {
507 max_threads += 100;

Completed in 676 milliseconds

1 2 3