Home
last modified time | relevance | path

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

/oneTBB/examples/parallel_for/game_of_life/
H A DEvolution.hpp73 virtual void SetPause(bool condition) { in SetPause() argument
74 if (condition == true) in SetPause()
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DFenced_Data_Transfer.rst68 order to the receiver (thus breaking condition a) or the receiver's
69 reads to appear out of order (thus breaking condition b).
153 happen before the condition is tested. However, the compiler or
155 condition.
/oneTBB/include/oneapi/tbb/detail/
H A D_utils.h123 bool timed_spin_wait_until(Condition condition) { in timed_spin_wait_until() argument
125 bool finish = condition(); in timed_spin_wait_until()
126 for (int i = 1; !finish && i < 32; finish = condition(), i *= 2) { in timed_spin_wait_until()
129 for (int i = 32; !finish && i < 64; finish = condition(), ++i) { in timed_spin_wait_until()