Lines Matching refs:loops
349 int32_t loops = 0; in runTestLoop() local
387 if (loops == 0 || t == 0) { in runTestLoop()
388 loops = failsafe; in runTestLoop()
392 loops = (int)((double)n / t * loops + 0.5); in runTestLoop()
393 if (loops == 0) { in runTestLoop()
399 t = testFunction->time(loops,&status); in runTestLoop()
406 loops = iterations; in runTestLoop()
416 fprintf(stdout, "%i\n", (int)loops); in runTestLoop()
423 t = testFunction->time(loops, &status); in runTestLoop()
436 … fprintf(stdout, "= %s end: %f loops: %i operations: %li \n", name, t, (int)loops, ops); in runTestLoop()
438 …(stdout, "= %s end: %f loops: %i operations: %li events: %li\n", name, t, (int)loops, ops, events); in runTestLoop()
442 fprintf(stdout,"= %s end %f %i %li\n", name, t, (int)loops, ops); in runTestLoop()
444 … fprintf(stdout,"= %s end %f %i %li %li\n", name, t, (int)loops, ops, events); in runTestLoop()
450 if (loops == 0 || ops == 0) { in runTestLoop()
455 name, avg_t, (int)loops, (avg_t*1E9)/(loops*ops)); in runTestLoop()
457 name, min_t, (int)loops, (min_t*1E9)/(loops*ops)); in runTestLoop()
461 … name, avg_t, (int)loops, (avg_t*1E9)/(loops*ops), (avg_t*1E9)/(loops*events)); in runTestLoop()
463 … name, min_t, (int)loops, (min_t*1E9)/(loops*ops), (min_t*1E9)/(loops*events)); in runTestLoop()