Lines Matching refs:function
65 …rivate field within the range. Therefore, the class provides the member function ``iterate() const…
81 // Define a lambda function as the body of the parallel_for loop
92 An additional lambda function ``pfor_body`` was also required. This lambda function invoked the ``r…
115 ``std::invoke`` is a function template that provides a syntax for invoking different types of calla…
117 oneTBB implementation uses the C++ standard function ``std::invoke(&StrideRange::iterate, range)`` …
118 Therefore, it allows you to invoke a callable object, such as a function object, with the provided …
138 // Lambda function to read the member object of the input Object
143 // Lambda function to process the received integer
154 // Connect the function nodes
165 …` in the Flow Graph required the body to be a Function Object. A lambda function was required to e…
186 // Use a member function pointer to the number member of the Object struct as the body
189 // Use the number_processor lambda function as the body
192 // Connect the function nodes
195 // Connect the function nodes