/external/chromium/base/ |
stats_table.cc | 110 int max_threads; member in struct:StatsTablePrivate::TableHeader 116 int max_threads, int max_counters); 125 int max_threads() const { return table_header_->max_threads; } function in class:StatsTablePrivate 143 return &data_table_[(counter_id-1) * max_threads()]; 153 int max_threads); 170 int max_threads, 184 priv->InitializeTable(memory, size, max_counters, max_threads); 194 int max_threads) { 203 header->max_threads = max_threads [all...] |
stats_table.h | 44 // max_threads is the maximum number of threads the table will support. 49 StatsTable(const std::string& name, int max_threads, int max_counters);
|
/external/bluetooth/glib/glib/ |
gthreadpool.h | 52 /* Get a thread pool with the function func, at most max_threads may 53 * run at a time (max_threads == -1 means no limit), exclusive == TRUE 59 gint max_threads, 75 gint max_threads, 96 void g_thread_pool_set_max_unused_threads (gint max_threads);
|
/external/bluetooth/glib/tests/ |
asyncqueue-test.c | 14 #define MAX_THREADS 50 134 gint max_threads = MAX_THREADS; local 135 gint max_unused_threads = MAX_THREADS; 148 max_threads, max_unused_threads)); 151 max_threads, 160 for (i = 1; i <= max_threads; i++) {
|
threadpool-test.c | 12 #define MAX_THREADS 10 139 g_thread_pool_set_max_unused_threads (MAX_THREADS); 260 guint max_threads; local 263 limit = MAX_THREADS * 10; 266 max_threads = 1; 268 max_threads = MAX_THREADS; 281 max_threads, 306 g_assert (g_thread_pool_get_max_threads (pool) == max_threads); 354 MAX_THREADS, [all...] |
/external/libvpx/vp8/common/ |
onyxd.h | 33 int max_threads; member in struct:__anon5253
|
/external/libvpx/vp8/decoder/ |
onyxd_int.h | 92 int max_threads; member in struct:VP8Decompressor
|
onyxd_if.c | 114 pbi->max_threads = oxcf->max_threads;
|
threading.c | 417 core_count = (pbi->max_threads > 16) ? 16 : pbi->max_threads;
|
/external/v8/tools/ |
stats-viewer.py | 423 self.max_threads = data.IntAt(12) 425 self._HEADER_SIZE + self.max_threads * (self._NAME_SIZE + 2 * 4) 440 self.counter_values_offset + i * self.max_threads * 4)
|
/external/libvpx/vp8/ |
vp8_dx_iface.c | 384 oxcf.max_threads = ctx->cfg.threads;
|