Home
last modified time | relevance | path

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

/oneTBB/examples/parallel_for/tachyon/src/
H A Dutil.cpp86 flt timertime(timer st, timer fn) { in timertime() argument
90 end = ((double)fn) / ((double)1000.00); in timertime()
107 flt timertime(timer st, timer fn) { in timertime() argument
111 end = (fn.tv_sec + 1.0 * fn.tv_usec / 1000000.0); in timertime()
124 flt timertime(timer st, timer fn) { in timertime() argument
125 return difftime(fn, st); in timertime()
H A Dutil.hpp78 flt timertime(timer st, timer fn);
/oneTBB/include/oneapi/tbb/
H A Dcollaborative_call_once.h208 void collaborative_call_once(collaborative_once_flag& flag, Fn&& fn, Args&&... args) { in collaborative_call_once() argument
216 auto func = [&] { call(std::forward<Fn>(fn), std::move(stored_pack)); }; in collaborative_call_once()
218 auto func = [&] { fn(std::forward<Args>(args)...); }; in collaborative_call_once()
/oneTBB/src/tbb/tools_api/
H A Dittnotify_static.h210 …in *domain, __itt_id id, __itt_id parent, void* fn), (ITT_FORMAT domain, id, pare…
328 …ock_domain*, clock_domain_create, (__itt_get_clock_info_fn fn, void* fn_data), (ITT_FORMAT fn, fn_…
333 …tt_id id, __itt_id parentid, void* fn), (ITT_FORMAT domain, clock_domain, timesta…
H A Dittnotify.h2305 …TAPI __itt_task_begin_fn(const __itt_domain *domain, __itt_id taskid, __itt_id parentid, void* fn);
2336 …TTAPI, void, task_begin_fn, (const __itt_domain *domain, __itt_id id, __itt_id parentid, void* fn))
2353 #define __itt_task_begin_fn(domain,id,parentid,fn)
2738 __itt_get_clock_info_fn fn; /*!< Callback function pointer */ member
2761 __itt_clock_domain* ITTAPI __itt_clock_domain_create(__itt_get_clock_info_fn fn, void* fn_data);
2766 ITT_STUB(ITTAPI, __itt_clock_domain*, clock_domain_create, (__itt_get_clock_info_fn fn, void* fn_da…
2770 #define __itt_clock_domain_create(fn,fn_data) (__itt_clock_domain*)0
2868 …_domain* clock_domain, unsigned long long timestamp, __itt_id taskid, __itt_id parentid, void* fn);
2883 …lock_domain* clock_domain, unsigned long long timestamp, __itt_id id, __itt_id parentid, void* fn))
2894 #define __itt_task_begin_fn_ex(domain,clock_domain,timestamp,id,parentid,fn)
/oneTBB/src/tbb/
H A Dparallel_pipeline.cpp446 … parallel_pipeline(d1::task_group_context& cxt, std::size_t max_token, const d1::filter_node& fn) { in parallel_pipeline() argument
449 pipe.fill_pipeline(fn); in parallel_pipeline()
/oneTBB/test/tbb/
H A Dtest_function_node.cpp500 tbb::flow::function_node<int, int> fn(g, tbb::flow::unlimited, [](const int&v){return v;}); in __anondcbd16150402() variable
502 CHECK_MESSAGE((fn.try_release()==false), "try_release should initially return false on a node");
503 CHECK_MESSAGE((fn.try_consume()==false), "try_consume should initially return false on a node");
H A Dtest_join_node.h1082 …my_recirc_function_type *fn = reinterpret_cast<my_recirc_function_type *>(all_input_nodes[ELEM-1][…
1083 tbb::flow::remove_edge(*fn, tbb::flow::input_port<ELEM-1>(my_join));
1084 tbb::flow::remove_edge(my_input, *fn);
1085 delete fn;
1141 … my_recirc_function_type *fn = reinterpret_cast<my_recirc_function_type *>(all_input_nodes[0][0]);
1142 tbb::flow::remove_edge(*fn, tbb::flow::input_port<0>(my_join));
1143 tbb::flow::remove_edge(my_input, *fn);
1144 delete fn;
H A Dtest_limiter_node.cpp450 tbb::flow::function_node<int, int> fn(g, tbb::flow::unlimited, in test_try_put_without_successors() local
457 tbb::flow::make_edge(ln, fn); in test_try_put_without_successors()