Home
last modified time | relevance | path

Searched refs:si (Results 1 – 6 of 6) sorted by relevance

/oneTBB/src/tbb/
H A Dmisc.cpp63 SYSTEM_INFO si; in DefaultSystemPageSize() local
64 GetSystemInfo(&si); in DefaultSystemPageSize()
65 return si.dwPageSize; in DefaultSystemPageSize()
H A Dmisc_ex.cpp291 SYSTEM_INFO si;
292 GetNativeSystemInfo(&si);
300 __TBB_ASSERT( nproc <= (int)si.dwNumberOfProcessors, nullptr);
304 if ( nproc == (int)si.dwNumberOfProcessors && TBB_GetActiveProcessorCount ) {
H A Dgovernor.cpp435 SYSTEM_INFO si; in load_tbbbind_shared_object() local
436 GetNativeSystemInfo(&si); in load_tbbbind_shared_object()
437 if (si.dwNumberOfProcessors > 32) return nullptr; in load_tbbbind_shared_object()
/oneTBB/examples/parallel_for/tachyon/src/
H A Dtrace.threads.cpp217 SYSTEM_INFO si; in get_num_cpus() local
218 GetNativeSystemInfo(&si); in get_num_cpus()
219 return (int)si.dwNumberOfProcessors; in get_num_cpus()
H A Dtrace.threads2d.cpp269 SYSTEM_INFO si; in get_num_cpus() local
270 GetNativeSystemInfo(&si); in get_num_cpus()
271 return (int)si.dwNumberOfProcessors; in get_num_cpus()
/oneTBB/test/common/
H A Dcommon_arena_constraints.h39 SYSTEM_INFO si; in get_processors_group_count() local
40 GetNativeSystemInfo(&si); in get_processors_group_count()
49 if ( nproc == (int)si.dwNumberOfProcessors ) { in get_processors_group_count()