Lines Matching refs:loops
351 int32_t loops = 0; in runTestLoop() local
389 if (loops == 0 || t == 0) { in runTestLoop()
390 loops = failsafe; in runTestLoop()
394 loops = (int)((double)n / t * loops + 0.5); in runTestLoop()
395 if (loops == 0) { in runTestLoop()
401 t = testFunction->time(loops,&status); in runTestLoop()
408 loops = iterations; in runTestLoop()
418 fprintf(stdout, "%i\n", (int)loops); in runTestLoop()
425 t = testFunction->time(loops, &status); in runTestLoop()
438 … fprintf(stdout, "= %s end: %f loops: %i operations: %li \n", name, t, (int)loops, ops); in runTestLoop()
440 …(stdout, "= %s end: %f loops: %i operations: %li events: %li\n", name, t, (int)loops, ops, events); in runTestLoop()
444 fprintf(stdout,"= %s end %f %i %li\n", name, t, (int)loops, ops); in runTestLoop()
446 … fprintf(stdout,"= %s end %f %i %li %li\n", name, t, (int)loops, ops, events); in runTestLoop()
452 if (loops == 0 || ops == 0) { in runTestLoop()
457 name, avg_t, (int)loops, (avg_t*1E9)/(loops*ops)); in runTestLoop()
459 name, min_t, (int)loops, (min_t*1E9)/(loops*ops)); in runTestLoop()
463 … name, avg_t, (int)loops, (avg_t*1E9)/(loops*ops), (avg_t*1E9)/(loops*events)); in runTestLoop()
465 … name, min_t, (int)loops, (min_t*1E9)/(loops*ops), (min_t*1E9)/(loops*events)); in runTestLoop()