/linux/drivers/gpu/drm/i915/gt/ |
A D | gen7_renderclear.c | 35 u32 max_threads; member 51 return bv->max_threads; in num_primitives() 61 bv->max_threads = 70; in batch_get_defaults() 64 bv->max_threads = 140; in batch_get_defaults() 67 bv->max_threads = 280; in batch_get_defaults() 76 bv->max_threads = 36; in batch_get_defaults() 79 bv->max_threads = 128; in batch_get_defaults() 265 u32 threads = bv->max_threads - 1; in gen7_emit_vfe_state()
|
/linux/tools/perf/bench/ |
A D | synthesize.c | 25 static unsigned int max_threads = UINT_MAX; variable 36 OPT_UINTEGER('M', "max-threads", &max_threads, 212 if (max_threads == UINT_MAX) in run_multi_threaded() 213 max_threads = sysconf(_SC_NPROCESSORS_ONLN); in run_multi_threaded() 220 nr_threads_synthesize <= max_threads; in run_multi_threaded()
|
/linux/tools/perf/util/ |
A D | thread_map.c | 77 int max_threads = 32, items, i; in __thread_map__new_all_cpus() local 80 struct perf_thread_map *threads = thread_map__alloc(max_threads); in __thread_map__new_all_cpus() 114 while (threads->nr + items >= max_threads) { in __thread_map__new_all_cpus() 115 max_threads *= 2; in __thread_map__new_all_cpus() 122 tmp = perf_thread_map__realloc(threads, max_threads); in __thread_map__new_all_cpus()
|
/linux/drivers/gpu/drm/radeon/ |
A D | rv770.c | 1209 rdev->config.rv770.max_threads = 248; in rv770_gpu_init() 1229 rdev->config.rv770.max_threads = 248; in rv770_gpu_init() 1253 rdev->config.rv770.max_threads = 192; in rv770_gpu_init() 1273 rdev->config.rv770.max_threads = 248; in rv770_gpu_init() 1515 sq_thread_resource_mgmt = (NUM_PS_THREADS((rdev->config.rv770.max_threads * 4)/8) | in rv770_gpu_init() 1516 NUM_VS_THREADS((rdev->config.rv770.max_threads * 2)/8) | in rv770_gpu_init() 1517 NUM_ES_THREADS((rdev->config.rv770.max_threads * 1)/8)); in rv770_gpu_init() 1518 if (((rdev->config.rv770.max_threads * 1) / 8) > rdev->config.rv770.max_gs_threads) in rv770_gpu_init()
|
A D | evergreen.c | 3164 rdev->config.evergreen.max_threads = 248; in evergreen_gpu_init() 3186 rdev->config.evergreen.max_threads = 248; in evergreen_gpu_init() 3208 rdev->config.evergreen.max_threads = 248; in evergreen_gpu_init() 3231 rdev->config.evergreen.max_threads = 192; in evergreen_gpu_init() 3253 rdev->config.evergreen.max_threads = 192; in evergreen_gpu_init() 3281 rdev->config.evergreen.max_threads = 248; in evergreen_gpu_init() 3303 rdev->config.evergreen.max_threads = 248; in evergreen_gpu_init() 3325 rdev->config.evergreen.max_threads = 248; in evergreen_gpu_init() 3347 rdev->config.evergreen.max_threads = 248; in evergreen_gpu_init() 3369 rdev->config.evergreen.max_threads = 192; in evergreen_gpu_init() [all …]
|
A D | radeon.h | 2051 unsigned max_threads; member 2073 unsigned max_threads; member 2100 unsigned max_threads; member 2128 unsigned max_threads; member
|
A D | ni.c | 900 rdev->config.cayman.max_threads = 256; in cayman_gpu_init() 978 rdev->config.cayman.max_threads = 256; in cayman_gpu_init()
|
A D | r600.c | 2012 rdev->config.r600.max_threads = 192; in r600_gpu_init() 2028 rdev->config.r600.max_threads = 192; in r600_gpu_init() 2046 rdev->config.r600.max_threads = 192; in r600_gpu_init() 2061 rdev->config.r600.max_threads = 192; in r600_gpu_init()
|
/linux/include/linux/ |
A D | padata.h | 148 int max_threads; member
|
/linux/arch/x86/kernel/ |
A D | smpboot.c | 1589 int max_threads, cpu; in recompute_smt_state() local 1591 max_threads = 0; in recompute_smt_state() 1595 if (threads > max_threads) in recompute_smt_state() 1596 max_threads = threads; in recompute_smt_state() 1598 __max_smt_threads = max_threads; in recompute_smt_state()
|
/linux/kernel/ |
A D | fork.c | 127 static int max_threads; /* tunable limit on nr_threads */ variable 786 max_threads = clamp_t(u64, threads, MIN_THREADS, MAX_THREADS); in set_max_threads() 834 init_task.signal->rlim[RLIMIT_NPROC].rlim_cur = max_threads/2; in fork_init() 835 init_task.signal->rlim[RLIMIT_NPROC].rlim_max = max_threads/2; in fork_init() 840 init_user_ns.ucount_max[i] = max_threads/2; in fork_init() 2073 if (data_race(nr_threads >= max_threads)) in copy_process() 3178 int threads = max_threads; in sysctl_max_threads() 3191 max_threads = threads; in sysctl_max_threads()
|
A D | padata.c | 482 nworks = min(nworks, job->max_threads); in padata_do_multithreaded()
|
/linux/drivers/gpu/drm/panfrost/ |
A D | panfrost_device.h | 44 u32 max_threads; member
|
A D | panfrost_gpu.c | 227 pfdev->features.max_threads = gpu_read(pfdev, GPU_THREAD_MAX_THREADS); in panfrost_gpu_init_features()
|
A D | panfrost_drv.c | 60 PANFROST_FEATURE(MAX_THREADS, max_threads); in panfrost_ioctl_get_param()
|
/linux/drivers/android/ |
A D | binder_internal.h | 445 int max_threads; member
|
A D | binder.c | 4196 proc->requested_threads_started < proc->max_threads && in binder_thread_read() 4776 int max_threads; in binder_ioctl() local 4778 if (copy_from_user(&max_threads, ubuf, in binder_ioctl() 4779 sizeof(max_threads))) { in binder_ioctl() 4784 proc->max_threads = max_threads; in binder_ioctl() 5719 proc->requested_threads_started, proc->max_threads, in print_binder_proc_stats()
|
/linux/drivers/staging/media/atomisp/pci/ |
A D | css_trace.h | 40 u8 max_threads; member
|
/linux/mm/ |
A D | page_alloc.c | 2039 int zid, max_threads; in deferred_init_memmap() local 2078 max_threads = deferred_page_init_max_threads(cpumask); in deferred_init_memmap() 2089 .max_threads = max_threads, in deferred_init_memmap()
|
/linux/ |
A D | System.map | 160354 ffff8000120ee7b8 b max_threads
|
A D | .tmp_System.map | 160354 ffff8000120ee7b8 b max_threads
|