Searched refs:ts_cumul (Results 1 – 1 of 1) sorted by relevance
309 struct timespec ts, ts_cumul; in do_threads_test() local373 ts_cumul.tv_sec = 0; in do_threads_test()374 ts_cumul.tv_nsec = 0; in do_threads_test()476 ts_cumul.tv_sec += ts.tv_sec; in do_threads_test()477 ts_cumul.tv_nsec += ts.tv_nsec; in do_threads_test()478 if (ts_cumul.tv_nsec >= 1000000000) { in do_threads_test()479 ts_cumul.tv_nsec -= 1000000000; in do_threads_test()480 ts_cumul.tv_sec += 1; in do_threads_test()517 output(" %d.%09d", ts_cumul.tv_sec, ts_cumul.tv_nsec); in do_threads_test()520 …measure->_data[s] = ts_cumul.tv_sec * 1000000 + (ts_cumul.tv_nsec / 1000); /* We reduce precision … in do_threads_test()[all …]