Home
last modified time | relevance | path

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

/oneTBB/src/tbb/
H A Dassert_impl.h41 static void assertion_failure_impl(const char* location, int line, const char* expression, const ch… in assertion_failure_impl() argument
44 expression, location, line); in assertion_failure_impl()
50 …if (1 == _CrtDbgReport(_CRT_ASSERT, location, line, "tbb_debug.dll", "%s\r\n%s", expression, comme… in assertion_failure_impl()
65 void __TBB_EXPORTED_FUNC assertion_failure(const char* location, int line, const char* expression, … in assertion_failure() argument
73 …atomic_do_once([&](){ assertion_failure_impl(location, line, expression, comment); }, assertion_st… in assertion_failure()
/oneTBB/doc/main/tbb_userguide/
H A DLambda_Expressions.rst8 ``parallel_for`` much easier to use. A lambda expression lets
13 expression. The lambda expression, replaces both the declaration and construction of function objec…
36 The [=] introduces the lambda expression. The expression creates a
38 ``a`` and ``n`` are declared outside the lambda expression, but used
75 expression ``parallel_for(first,last,step,f)`` is like writing
H A DNodes.rst45 …- User defined function object, or lambda expression, that is applied to the incoming messa…
54 expression that prints each value v that it receives, spins for v
146 The library spawns three tasks, each one applying n's lambda expression
H A DConstraints.rst24 // note: the required expression 'body(range)' is invalid
H A DCancellation_Without_An_Exception.rst7 To cancel an algorithm but not throw an exception, use the expression ``current_context()->cancel_g…
H A DExceptions_and_Cancellation.rst70 with only 1000 elements. Hence the expression ``Data.at(i)`` sometimes
H A DMapping_Nodes2Tasks.rst11 expression, λ\ :sub:`n`, on one of the three input messages. Because n
H A DDependence_Graph.rst72 function object or lambda expression. Unlike a function_node, a
H A DData_Flow_Graph.rst117 The body is a function object, or lambda expression, that contains a
/oneTBB/test/common/
H A Dutils_assert.h29 void ReportError( const char* filename, int line, const char* expression, const char * message ) { in ReportError() argument
31 …REPORT_FATAL_ERROR("%s:%d, assertion %s: %s\n", filename, line, expression, message ? message : "f… in ReportError()
36 …if(1 == _CrtDbgReport(_CRT_ASSERT, filename, line, nullptr, "%s\r\n%s", expression, message?messag… in ReportError()
/oneTBB/include/oneapi/tbb/detail/
H A D_assert.h33 …TED_FUNC assertion_failure(const char* location, int line, const char* expression, const char* com…
/oneTBB/doc/main/intro/
H A DBenefits.rst74 - The expression ``*i<*j`` is true if the item pointed to by
79 - The expression ``swap(*i,*j)`` swaps two elements.
/oneTBB/examples/graph/dining_philosophers/
H A DREADME.md23 …-negative integers or 'auto' for the default choice, and optional step expression specifies how th…
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DNon-Preemptive_Priorities.rst84 …The functor may be the result of a lambda expression. ``EnqueueWork`` packages ``f`` as a ``WorkIt…