Home
last modified time | relevance | path

Searched refs:tsc_end (Results 1 – 5 of 5) sorted by relevance

/third_party/ltp/testcases/realtime/func/measurement/
Drdtsc-latency.c88 unsigned long long tsc_start, tsc_end; in tsc_period_ps() local
93 rdtscll(tsc_end); in tsc_period_ps()
97 tsc_end); in tsc_period_ps()
/third_party/ltp/testcases/realtime/func/async_handler/
Dasync_handler_tsc.c100 unsigned long long tsc_start, tsc_end; in tsc_period_ps() local
105 rdtscll(tsc_end); in tsc_period_ps()
108 return (1000 * (ns_end - ns_start)) / tsc_minus(tsc_start, tsc_end); in tsc_period_ps()
/third_party/ltp/testcases/realtime/lib/
Dlibrttest.c509 unsigned long long tsc_end) in tsc_minus() argument
512 if (tsc_start <= tsc_end) in tsc_minus()
513 delta = tsc_end - tsc_start; in tsc_minus()
515 delta = ULL_MAX - (tsc_end - tsc_start) + 1; in tsc_minus()
/third_party/alsa-lib/test/
Dmixtest.c72 unsigned long long tsc_begin, tsc_end; in detect_cpu_clock() local
82 rdtscll(tsc_end); in detect_cpu_clock()
85 …return (tsc_end - tsc_begin) / (tm_end.tv_sec - tm_begin.tv_sec + (tm_end.tv_nsec - tm_begin.tv_ns… in detect_cpu_clock()
/third_party/ltp/testcases/realtime/include/
Dlibrttest.h307 unsigned long long tsc_minus(unsigned long long tsc_start, unsigned long long tsc_end);