Home
last modified time | relevance | path

Searched refs:t_start (Results 1 – 3 of 3) sorted by relevance

/f-stack/dpdk/lib/librte_eal/windows/
H A Deal_timer.c54 LARGE_INTEGER t_start, t_end, elapsed_us; in get_tsc_freq() local
61 QueryPerformanceCounter(&t_start); in get_tsc_freq()
72 elapsed_us.QuadPart = t_end.QuadPart - t_start.QuadPart; in get_tsc_freq()
/f-stack/dpdk/lib/librte_eal/linux/
H A Deal_timer.c211 struct timespec t_start, t_end; in get_tsc_freq() local
214 if (clock_gettime(CLOCK_MONOTONIC_RAW, &t_start) == 0) { in get_tsc_freq()
219 ns = ((t_end.tv_sec - t_start.tv_sec) * NS_PER_SEC); in get_tsc_freq()
220 ns += (t_end.tv_nsec - t_start.tv_nsec); in get_tsc_freq()
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dvdev_raidz_math.c399 hrtime_t t_start, t_diff; in benchmark_raidz_impl() local
410 t_start = gethrtime(); in benchmark_raidz_impl()
416 t_diff = gethrtime() - t_start; in benchmark_raidz_impl()