Searched refs:tti (Results 1 – 4 of 4) sorted by relevance
30 struct task_thread_times_info tti; in clock() local43 (task_info_t) &tti, &count); in clock()48 total += tti.user_time.seconds * 1000000 + tti.user_time.microseconds; in clock()50 total += tti.system_time.seconds * 1000000 + tti.system_time.microseconds; in clock()
43 struct task_thread_times_info tti; in __times() local56 (task_info_t) &tti, &count); in __times()61 + clock_from_time_value (&tti.user_time)); in __times()63 + clock_from_time_value (&tti.system_time)); in __times()
33 struct task_thread_times_info tti; in __getrusage() local56 (task_info_t) &tti, &count); in __getrusage()60 time_value_add (&bi.user_time, &tti.user_time); in __getrusage()61 time_value_add (&bi.system_time, &tti.system_time); in __getrusage()
50 struct task_thread_times_info tti; in __clock_gettime() local67 (task_info_t) &tti, &count); in __clock_gettime()73 time_value_add (&t, &tti.user_time); in __clock_gettime()74 time_value_add (&t, &tti.system_time); in __clock_gettime()
Completed in 5 milliseconds