Lines Matching refs:minExecuted

303             minExecuted = (g_NumThreads - 1) * innerCalls;  in Test3()  local
307 minExecuted = (g_OuterParCalls - 1) * innerCalls; // see above in Test3()
325 REQUIRE_MESSAGE (g_CurExecuted > minExecuted, "Too few tasks survived exception"); in Test3()
326 …REQUIRE_MESSAGE ((g_CurExecuted <= minExecuted + (g_ExecutedAtLastCatch + g_NumThreads)), "Too man… in Test3()
361 intptr_t minExecuted = (outerCalls - g_NumExceptionsCaught) * innerCalls; in Test4() local
368 REQUIRE_MESSAGE (g_CurExecuted >= minExecuted, "Too few tasks executed"); in Test4()
374 …REQUIRE_MESSAGE (g_CurExecuted <= minExecuted + (g_ExecutedAtLastCatch + g_NumThreads), "Too many … in Test4()
378 REQUIRE_MESSAGE (g_CurExecuted >= minExecuted, "Too few executed tasks reported"); in Test4()
923 minExecuted = (g_NumThreads - 1) * innerCalls; in Test3_parallel_for_each() local
929 minExecuted = (g_OuterParCalls - 1) * innerCalls; in Test3_parallel_for_each()
933 REQUIRE_MESSAGE (g_CurExecuted > minExecuted, "Too few tasks survived exception"); in Test3_parallel_for_each()
934 …REQUIRE_MESSAGE (g_CurExecuted <= minExecuted + (g_ExecutedAtLastCatch + g_NumThreads), "Too many … in Test3_parallel_for_each()
982 minExecuted = 0; in Test4_parallel_for_each() local
985 minExecuted = maxExecuted - innerCalls; in Test4_parallel_for_each()
987 REQUIRE_MESSAGE (g_CurExecuted >= minExecuted, "Too few tasks executed"); in Test4_parallel_for_each()
994 minExecuted = g_NumExceptionsCaught; in Test4_parallel_for_each()
996 REQUIRE_MESSAGE (g_CurExecuted >= minExecuted, "Too many executed tasks reported"); in Test4_parallel_for_each()
1458 minExecuted = (g_NumThreads - 1) * innerCalls; in Test3_pipeline() local
1489 minExecuted = (2*get_iter_range_size()) * (g_PipelinesStarted - 2) + 1; in Test3_pipeline()
1491 REQUIRE_MESSAGE(g_CurExecuted >= minExecuted, "Too few tasks survived exception"); in Test3_pipeline()
1544 intptr_t minExecuted = 0; in Test4_pipeline() local
1548 minExecuted = maxExecuted - innerCalls; // one throwing inner pipeline in Test4_pipeline()
1554 minExecuted = (outerCalls - g_NumExceptionsCaught) * innerCalls; in Test4_pipeline()
1556 REQUIRE_MESSAGE (g_CurExecuted >= minExecuted, "Too many executed tasks reported"); in Test4_pipeline()