Home
last modified time | relevance | path

Searched refs:nproc (Results 1 – 3 of 3) sorted by relevance

/oneTBB/test/common/
H A Dutils_concurrency_limit.h82 int nproc = 0; in get_max_procs() local
85 ++nproc; in get_max_procs()
87 maxProcs = nproc; in get_max_procs()
92 int nproc = sysconf(_SC_NPROCESSORS_ONLN); in get_max_procs()
93 for (int i = 0; i < nproc; ++i) { in get_max_procs()
111 int nproc = sysconf(_SC_NPROCESSORS_ONLN); in get_start_affinity_process() local
112 for (int i = 0; i < nproc; ++i) { in get_start_affinity_process()
H A Dcommon_arena_constraints.h43 int nproc = 0; in get_processors_group_count() local
46 ++nproc; in get_processors_group_count()
49 if ( nproc == (int)si.dwNumberOfProcessors ) { in get_processors_group_count()
/oneTBB/src/tbb/
H A Dmisc_ex.cpp295 int nproc = 0;
298 ++nproc;
300 __TBB_ASSERT( nproc <= (int)si.dwNumberOfProcessors, nullptr);
302 theProcessorGroups[0].numProcs = theProcessorGroups[0].numProcsRunningTotal = nproc;
304 if ( nproc == (int)si.dwNumberOfProcessors && TBB_GetActiveProcessorCount ) {