Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 2 of 2) sorted by relevance

/oneTBB/src/tbb/
H A Dmisc.h176 T1 atomic_update(std::atomic<T1>& dst, T1 newValue, Pred compare) { in atomic_update() argument
178 while ( compare(oldValue, newValue) ) { in atomic_update()
179 if ( dst.compare_exchange_strong(oldValue, newValue) ) in atomic_update()
/oneTBB/examples/parallel_for/polygon_overlay/
H A Drpolygon.hpp169 void setDuplicate(bool newValue) { in setDuplicate() argument
170 is_duplicate = newValue; in setDuplicate()