Home
last modified time | relevance | path

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

/oneTBB/include/oneapi/tbb/
H A Dconcurrent_queue.h322 class concurrent_bounded_queue {
347 concurrent_bounded_queue() : concurrent_bounded_queue(allocator_type()) {} in concurrent_bounded_queue() function
366 concurrent_bounded_queue(a) in concurrent_bounded_queue() function
376 concurrent_bounded_queue( const concurrent_bounded_queue& src, const allocator_type& a ) : in concurrent_bounded_queue() function
382 concurrent_bounded_queue( const concurrent_bounded_queue& src ) : in concurrent_bounded_queue() function
389 concurrent_bounded_queue( concurrent_bounded_queue&& src ) : in concurrent_bounded_queue() function
395 concurrent_bounded_queue( concurrent_bounded_queue&& src, const allocator_type& a ) : in concurrent_bounded_queue() function
410 ~concurrent_bounded_queue() { in ~concurrent_bounded_queue()
418 concurrent_bounded_queue& operator=( const concurrent_bounded_queue& other ) {
428 concurrent_bounded_queue& operator=( concurrent_bounded_queue&& other ) {
[all …]
/oneTBB/test/tbb/
H A Dtest_concurrent_queue.cpp65 TestPrimitiveTypes<tbb::concurrent_bounded_queue<char>, char>(MaxThread, (char)1); in TestQueueWorksWithPrimitiveTypes()
66 TestPrimitiveTypes<tbb::concurrent_bounded_queue<int>, int>(MaxThread, (int)-12); in TestQueueWorksWithPrimitiveTypes()
67 TestPrimitiveTypes<tbb::concurrent_bounded_queue<float>, float>(MaxThread, (float)-1.2f); in TestQueueWorksWithPrimitiveTypes()
68 TestPrimitiveTypes<tbb::concurrent_bounded_queue<double>, double>(MaxThread, (double)-4.3); in TestQueueWorksWithPrimitiveTypes()
109 TestVectorTypes<ClassWithSSE, tbb::concurrent_bounded_queue<ClassWithSSE> >(); in TestQueueWorksWithSSE()
114 TestVectorTypes<ClassWithAVX, tbb::concurrent_bounded_queue<ClassWithAVX> >(); in TestQueueWorksWithSSE()
199 CopyWithThrowElement<tbb::concurrent_bounded_queue<throw_element>>();
283 test_tracking_dtors_on_clear<oneapi::tbb::concurrent_bounded_queue<TrackableItem>>();
H A Dtest_concurrent_queue_whitebox.cpp98 tbb::concurrent_bounded_queue<int> q;
H A Dtest_hw_concurrency.cpp64 tbb::concurrent_bounded_queue<std::size_t> cbq;
H A Dtest_tbb_header.cpp192 TestTypeDefinitionPresence( concurrent_bounded_queue<int> ); in DefinitionPresence()
/oneTBB/test/conformance/
H A Dconformance_concurrent_queue.cpp587 …TestConstructors<oneapi::tbb::concurrent_bounded_queue<Bar>, Bar, BarIterator, oneapi::tbb::concur… in TestQueueConstructors()
592 oneapi::tbb::concurrent_bounded_queue<T>& queue;
621 oneapi::tbb::concurrent_bounded_queue<T> queue; in TestNegativeQueue()
937 oneapi::tbb::concurrent_bounded_queue<int>* q;
960 oneapi::tbb::concurrent_bounded_queue<int>* q;
988 oneapi::tbb::concurrent_bounded_queue<int> iq1; in TestAbort()
1007 oneapi::tbb::concurrent_bounded_queue<int> iq2; in TestAbort()
1023 oneapi::tbb::concurrent_bounded_queue<int> iq3; in TestAbort()
1043 oneapi::tbb::concurrent_bounded_queue<int> iq4; in TestAbort()
1280 oneapi::tbb::concurrent_bounded_queue<T, A> q2 = q; in bounded_queue_specific_test()
[all …]
/oneTBB/doc/main/tbb_userguide/
H A DIterating_Over_a_Concurrent_Queue_for_Debugging.rst8 ``concurrent_bounded_queue`` support STL-style iteration. This support
H A DConcurrent_Queue_Classes.rst66 Template class ``concurrent_bounded_queue<T,Alloc>`` is a variant that
95 By default, a ``concurrent_bounded_queue`` is unbounded. It may hold any
/oneTBB/src/tbb/def/
H A Dlin64-tbb.def141 /* Concurrent bounded queue (concurrent_bounded_queue.cpp) */
H A Dlin32-tbb.def141 /* Concurrent bounded queue (concurrent_bounded_queue.cpp) */
H A Dmac64-tbb.def143 # Concurrent bounded queue (concurrent_bounded_queue.cpp)
H A Dwin64-tbb.def135 ; Concurrent bounded queue (concurrent_bounded_queue.cpp)
H A Dwin32-tbb.def135 ; Concurrent bounded queue (concurrent_bounded_queue.cpp)
/oneTBB/src/tbb/
H A DCMakeLists.txt20 concurrent_bounded_queue.cpp
/oneTBB/examples/graph/fgbzip2/
H A Dfgbzip2.cpp194 oneapi::tbb::concurrent_bounded_queue<BufferMsg> m_writeQueue;