Lines Matching refs:count
450 atomic_t count; in LaunchChildrenWithFunctor() local
451 count = 0; in LaunchChildrenWithFunctor()
455 g.run(g.defer(ThrowingTask(count))); in LaunchChildrenWithFunctor()
458 g.run(ThrowingTask(count)); in LaunchChildrenWithFunctor()
1025 std::atomic<unsigned>& count; member
1027 unsigned previous_count = count.fetch_sub(1); in operator ()()
1037 std::atomic<unsigned> count{num}; variable
1039 SelfRunner uf{tg, count};
1043 count == 0,
1054 std::atomic<unsigned> count{13}; in run_cancellation_use_case() local
1063 inner_tg.run( SelfRunner{inner_tg, count} ); in run_cancellation_use_case()
1087 CHECK_MESSAGE(0 == count, "Some of the inner group tasks were not executed."); in run_cancellation_use_case()