| /oneTBB/src/tbb/ |
| H A D | assert_impl.h | 41 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 D | Lambda_Expressions.rst | 8 ``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 D | Nodes.rst | 45 …- 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 D | Constraints.rst | 24 // note: the required expression 'body(range)' is invalid
|
| H A D | Cancellation_Without_An_Exception.rst | 7 To cancel an algorithm but not throw an exception, use the expression ``current_context()->cancel_g…
|
| H A D | Exceptions_and_Cancellation.rst | 70 with only 1000 elements. Hence the expression ``Data.at(i)`` sometimes
|
| H A D | Mapping_Nodes2Tasks.rst | 11 expression, λ\ :sub:`n`, on one of the three input messages. Because n
|
| H A D | Dependence_Graph.rst | 72 function object or lambda expression. Unlike a function_node, a
|
| H A D | Data_Flow_Graph.rst | 117 The body is a function object, or lambda expression, that contains a
|
| /oneTBB/test/common/ |
| H A D | utils_assert.h | 29 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.h | 33 …TED_FUNC assertion_failure(const char* location, int line, const char* expression, const char* com…
|
| /oneTBB/doc/main/intro/ |
| H A D | Benefits.rst | 74 - 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 D | README.md | 23 …-negative integers or 'auto' for the default choice, and optional step expression specifies how th…
|
| /oneTBB/doc/main/tbb_userguide/design_patterns/ |
| H A D | Non-Preemptive_Priorities.rst | 84 …The functor may be the result of a lambda expression. ``EnqueueWork`` packages ``f`` as a ``WorkIt…
|