Home
last modified time | relevance | path

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

/oneTBB/examples/graph/fgbzip2/
H A Dblocksort.cpp426 UInt16 s1, s2; in mainGtU() local
522 s1 = quadrant[i1]; in mainGtU()
524 if (s1 != s2) in mainGtU()
533 s1 = quadrant[i1]; in mainGtU()
535 if (s1 != s2) in mainGtU()
546 if (s1 != s2) in mainGtU()
557 if (s1 != s2) in mainGtU()
568 if (s1 != s2) in mainGtU()
579 if (s1 != s2) in mainGtU()
590 if (s1 != s2) in mainGtU()
[all …]
/oneTBB/src/tbb/tools_api/
H A Dittnotify_config.h286 #define __itt_fstrcmp(s1, s2) lstrcmpA(s1, s2) argument
288 #define __itt_fstrcpyn(s1, b, s2, l) strncpy_s(s1, b, s2, l) argument
338 #define __itt_fstrcmp(s1, s2) strcmp(s1, s2) argument
347 #define __itt_fstrcpyn(s1, b, s2, l) SDL_STRNCPY_S(s1, b, s2, l) argument
349 #define __itt_fstrcpyn(s1, b, s2, l) { \ argument
355 strncpy(s1, s2, num_to_copy); \
356 s1[num_to_copy] = 0; \
/oneTBB/test/tbb/
H A Dtest_sequencer_node.cpp164 …parallel_put_get( tbb::flow::sequencer_node<T> &s1, tbb::flow::sequencer_node<T> &s2, int num_thre… in parallel_put_get()
165 …std::atomic<int> &counter, touches<T> &t ) : my_s1(s1), my_s2(s2), my_num_threads(num_threads), my… in parallel_put_get()
212 tbb::flow::sequencer_node<T> s1(g, seq_inspector<T>()); in test_parallel() local
215 tbb::flow::make_edge( s1, s2 ); in test_parallel()
222 … utils::NativeParallelFor( num_threads, parallel_put_get<T>(s1, s3, num_threads, counter, t) ); in test_parallel()
227 CHECK_MESSAGE( s1.try_get( j ) == false, "" ); in test_parallel()
419 sequencer_node s1(g, body); in test_deduction_guides_common() local
420 static_assert(std::is_same_v<decltype(s1), sequencer_node<int>>); in test_deduction_guides_common()
427 sequencer_node s3(s1); in test_deduction_guides_common()
H A Dtest_split_node.cpp383 split_node s1(s0); in test_deduction_guides() local
384 static_assert(std::is_same_v<decltype(s1), split_node<tuple_type>>); in test_deduction_guides()
/oneTBB/test/conformance/
H A Dconformance_concurrent_unordered_set.cpp139 TSet s1(v.begin(), v.end()); in test_deduction_guides() local
140 static_assert(std::is_same<decltype(s1), TSet<ComplexType>>::value); in test_deduction_guides()
196 TSet s13(s1); in test_deduction_guides()
197 static_assert(std::is_same<decltype(s13), decltype(s1)>::value); in test_deduction_guides()
205 TSet s15(std::move(s1)); in test_deduction_guides()
206 static_assert(std::is_same<decltype(s15), decltype(s1)>::value); in test_deduction_guides()
H A Dconformance_sequencer_node.cpp37 sequencer_node s1(g, body); in test_deduction_guides_common() local
38 static_assert(std::is_same_v<decltype(s1), sequencer_node<int>>); in test_deduction_guides_common()
45 sequencer_node s3(s1); in test_deduction_guides_common()
H A Dconformance_input_node.cpp41 input_node s1(g, lambda); in test_deduction_guides() local
42 static_assert(std::is_same_v<decltype(s1), input_node<int>>); in test_deduction_guides()
H A Dconformance_global_control.cpp37 oneapi::tbb::global_control s1(oneapi::tbb::global_control::thread_stack_size, 8*MB); in TestStackSizeSimpleControl() local
52 oneapi::tbb::global_control s1(oneapi::tbb::global_control::thread_stack_size, (1+id)*MB); in operator ()() local
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_overload.cpp331 BigStruct *s1, *s2, *s3, *s4, *s5, *s6; in CheckNewDeleteOverload() local
333 s1 = new BigStruct; in CheckNewDeleteOverload()
334 scalableMallocCheckSize(s1, sizeof(BigStruct)); in CheckNewDeleteOverload()
335 delete s1; in CheckNewDeleteOverload()
/oneTBB/include/oneapi/tbb/
H A Denumerable_thread_specific.h176 slot& s1 = r->at(i);
177 if( !s1.empty() ) {
178 …for( std::size_t j = root->start(std::hash<key_type>{}(s1.key.load(std::memory_order_relaxed))); ;…
181 s2.ptr = add_element(static_cast<ets_base<E2>&>(*this), s1.ptr);
182 … s2.key.store(s1.key.load(std::memory_order_relaxed), std::memory_order_relaxed);
185 else if( s2.match(s1.key.load(std::memory_order_relaxed)) )
/oneTBB/test/common/
H A Ddoctest.h432 #define DOCTEST_CAT_IMPL(s1, s2) s1##s2 argument
433 #define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2) argument