Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_concurrent_priority_queue.cpp76 struct MoveOperationTrackerBase { struct
88 MoveOperationTrackerBase() : value(++value_counter) {} in MoveOperationTrackerBase() argument
89 explicit MoveOperationTrackerBase( const std::size_t val ) : value(val) {} in MoveOperationTrackerBase() argument
90 ~MoveOperationTrackerBase() { value = 0; } in ~MoveOperationTrackerBase() argument
92 MoveOperationTrackerBase( const MoveOperationTrackerBase& other ) : value(other.value) { in MoveOperationTrackerBase() argument
97 MoveOperationTrackerBase( MoveOperationTrackerBase&& other ) noexcept : value(other.value) { in MoveOperationTrackerBase() argument
103 MoveOperationTrackerBase& operator=( const MoveOperationTrackerBase& other ) { in operator =() argument
110 MoveOperationTrackerBase& operator=( MoveOperationTrackerBase&& other ) noexcept { in operator =() argument
118 bool operator<( const MoveOperationTrackerBase& other ) const { in operator <() argument
126 bool operator==( const MoveOperationTrackerBase<CounterType>& lhs, const MoveOperationTrackerBase<C… in operator ==()
[all …]