Searched refs:worst_latencies_from_first_ns (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/tools/tests/zero-to-n/
H A Dzero-to-n.c399 uint64_t *worst_latencies_from_first_ns; local
455 worst_latencies_from_first_ns = (uint64_t*) malloc(sizeof(uint64_t) * g_iterations);
456 assert(worst_latencies_from_first_ns, fail);
528 worst_latencies_from_first_ns[i] = abs_to_nanos(worst_abs);
533 if (worst_latencies_from_first_ns[i] > traceworthy_latency_ns) {
537 printf("Worst on this round was %.2f us.\n", ((float)worst_latencies_from_first_ns[i]) / 1000.0);
563 compute_stats(worst_latencies_from_first_ns, g_iterations, &avg, &max, &min, &stddev);

Completed in 19 milliseconds