Lines Matching refs:local_id
102 static tbb::enumerable_thread_specific<int> local_id, old_id, slot_id(-3); variable
105 local_id.clear(); in ResetTLS()
121 old_id.local() = local_id.local(); in on_scheduler_entry()
123 local_id.local() = myId; in on_scheduler_entry()
127 CHECK_MESSAGE(local_id.local() == myId, "nesting of arenas is broken"); in on_scheduler_exit()
130 local_id.local() = old_id.local(); in on_scheduler_exit()
161 CHECK_MESSAGE(local_id.local() != 0, "not in explicit arena"); in operator ()()
444 CHECK_MESSAGE( local_id.local() == 0, "TLS was not cleaned?" ); in operator ()()
445 local_id.local() = 1; in operator ()()
456 if ( local_id.local() == 1 ) { in operator ()()
465 …CHECK_MESSAGE( local_id.local() == 1, "Workers are not supposed to enter the arena in this test" ); in operator ()()
1475 local_id.local() = 1; in TestDefaultCreatedWorkersAmount()
1482 …REQUIRE_MESSAGE(local_id.size() <= size_t(threads), "amount of created threads is not equal to def… in TestDefaultCreatedWorkersAmount()
1484 …REQUIRE_MESSAGE(local_id.size() == size_t(threads), "amount of created threads is not equal to def… in TestDefaultCreatedWorkersAmount()