Lines Matching refs:outerCalls
132 intptr_t outerCalls = NumSubranges(length, grain), in TestNumSubrangesCalculation() local
134 maxExecuted = outerCalls * (innerCalls + 1); in TestNumSubrangesCalculation()
353 outerCalls = NumSubranges(OUTER_RANGE, OUTER_GRAIN); in Test4() local
361 intptr_t minExecuted = (outerCalls - g_NumExceptionsCaught) * innerCalls; in Test4()
377 …REQUIRE_MESSAGE (((g_NumExceptionsCaught >= 1 && g_NumExceptionsCaught <= outerCalls) || okayNoExc… in Test4()
380 …REQUIRE_MESSAGE (g_CurExecuted <= outerCalls * (1 + g_NumThreads), "Too many tasks survived except… in Test4()
980 outerCalls = get_iter_range_size() + g_FedTasksCount, in Test4_parallel_for_each() local
981 maxExecuted = outerCalls * innerCalls, in Test4_parallel_for_each()
995 …REQUIRE_MESSAGE ((g_NumExceptionsCaught > 1 && g_NumExceptionsCaught <= outerCalls), "Unexpected a… in Test4_parallel_for_each()
997 …REQUIRE_MESSAGE (g_CurExecuted < g_ExecutedAtLastCatch + g_NumThreads + outerCalls, "Too many task… in Test4_parallel_for_each()
998 …REQUIRE_MESSAGE (g_CurExecuted <= outerCalls * (1 + g_NumThreads), "Too many tasks survived except… in Test4_parallel_for_each()
1538 outerCalls = 2*get_iter_range_size(), in Test4_pipeline() local
1539 … maxExecuted = outerCalls * innerCalls; // the number of invocations of the inner pipelines in Test4_pipeline()
1554 minExecuted = (outerCalls - g_NumExceptionsCaught) * innerCalls; in Test4_pipeline()
1555 …REQUIRE_MESSAGE(((g_NumExceptionsCaught >= 1 && g_NumExceptionsCaught <= outerCalls) || okayNoExce… in Test4_pipeline()