Home
last modified time | relevance | path

Searched refs:t_end (Results 1 – 2 of 2) 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
69 QueryPerformanceCounter(&t_end); 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
217 clock_gettime(CLOCK_MONOTONIC_RAW, &t_end); 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()