Home
last modified time | relevance | path

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

/oneTBB/test/common/
H A Dchecktype.h28 LIVE = 0x56781234, enumerator
33 DestroyedTracker() : my_state(LIVE) {} in DestroyedTracker()
34 DestroyedTracker( const DestroyedTracker& src ) : my_state(LIVE) { in DestroyedTracker()
50 return my_state == LIVE; in is_alive()
H A Dutils.h277 LIVE = 0x56781234,
282 NoAfterlife() : m_state(LIVE) {}
283 NoAfterlife(const NoAfterlife& src) : m_state(LIVE) {
299 return m_state == LIVE;
/oneTBB/test/conformance/
H A Dconformance_concurrent_queue.cpp277 LIVE = 0x1234, enumerator
286 Bar() : state(LIVE), my_id(-1) in Bar()
298 CHECK_FAST(state == LIVE); in ~Bar()
306 CHECK_FAST(state == LIVE); in operator =()
389 CHECK_FAST(state == LIVE); in ~BarEx()
397 CHECK_FAST(state == LIVE); in operator =()
795 FooEx() : state(LIVE) { in FooEx()
810 CHECK(state==LIVE); in ~FooEx()
817 CHECK(item.state==LIVE); in operator =()
818 CHECK(state==LIVE); in operator =()
[all …]
H A Dconformance_concurrent_hash_map.cpp70 LIVE=0x1234, enumerator
76 my_state = LIVE; in MyData()
86 my_state = LIVE; in MyData()
106 CHECK_FAST(my_state==LIVE); in value_of()
111 CHECK_FAST(my_state==LIVE); in set_value()
117 CHECK_FAST(my_state==LIVE); in operator ==()
128 CHECK_FAST(my_state==LIVE); in MyData2()
134 CHECK_FAST(my_state==LIVE); in MyData2()
140 CHECK_FAST(my_state==LIVE); in operator =()
146 CHECK_FAST(my_state==LIVE); in operator =()
[all …]
H A Dconformance_parallel_for.cpp95 CHECK_FAST(state == LIVE); in FooBody()
104 const int LIVE = 0x1234; member in FooBody
109 FooBody( std::atomic<int>* array_ ) : array(array_), state(LIVE) {} in FooBody()