Searched refs:t_end (Results 1 – 2 of 2) sorted by relevance
54 LARGE_INTEGER t_start, t_end, elapsed_us; in get_tsc_freq() local69 QueryPerformanceCounter(&t_end); in get_tsc_freq()72 elapsed_us.QuadPart = t_end.QuadPart - t_start.QuadPart; in get_tsc_freq()
211 struct timespec t_start, t_end; in get_tsc_freq() local217 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()