Home
last modified time | relevance | path

Searched refs:user_time (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/base/
Dcpumonitor.cc200 FILETIME idle_time, kernel_time, user_time; in GetSystemLoad() local
201 if (!get_system_times(&idle_time, &kernel_time, &user_time)) { in GetSystemLoad()
207 total_times = ToUInt64(kernel_time) + ToUInt64(user_time); in GetSystemLoad()
310 FILETIME create_time, exit_time, kernel_time, user_time; in GetProcessLoad() local
312 &create_time, &exit_time, &kernel_time, &user_time)) { in GetProcessLoad()
320 (ToUInt64(kernel_time) + ToUInt64(user_time)); in GetProcessLoad()
352 const uint64 cpu_times = (TimeValueTToInt64(task_times_info.user_time) + in GetProcessLoad()
354 TimeValueTToInt64(task_term_info.user_time) + in GetProcessLoad()
/external/eigen/bench/btl/generic_bench/timers/
Dportable_timer.hh74 double user_time() { return elapsed(); } in user_time() function in Portable_Timer
127 return user_time(); in elapsed()
130 double user_time() in user_time() function in Portable_Timer
Dportable_perf_analyzer_old.hh104 return _chronos.user_time(); in time_init()
118 return _chronos.user_time(); in time_calculate()
Dportable_perf_analyzer.hh86 return _chronos.user_time(); in time_calculate()
/external/chromium_org/content/gpu/
Dgpu_watchdog_thread.cc294 FILETIME user_time; in GetWatchedThreadTime() local
300 &user_time); in GetWatchedThreadTime()
304 user_time64.HighPart = user_time.dwHighDateTime; in GetWatchedThreadTime()
305 user_time64.LowPart = user_time.dwLowDateTime; in GetWatchedThreadTime()
/external/skia/bench/
DBenchSysTimer_mach.cpp32 time_value_add(&thread_info_data.user_time, &thread_info_data.system_time) in macCpuTime()
33 return thread_info_data.user_time; in macCpuTime()
/external/chromium_org/base/process/
Dprocess_metrics_win.cc202 FILETIME user_time; in GetCPUUsage() local
207 &kernel_time, &user_time)) { in GetCPUUsage()
213 int64 system_time = (FileTimeToUTC(kernel_time) + FileTimeToUTC(user_time)) / in GetCPUUsage()
Dprocess_metrics_mac.cc243 TIME_VALUE_TO_TIMEVAL(&thread_info_data.user_time, &user_timeval); in GetCPUUsage()
248 TIME_VALUE_TO_TIMEVAL(&task_info_data.user_time, &user_timeval); in GetCPUUsage()
/external/chromium_org/base/time/
Dtime_mac.cc90 return (thread_info_data.user_time.seconds * in ComputeThreadTicks()
92 thread_info_data.user_time.microseconds; in ComputeThreadTicks()
/external/llvm/include/llvm/Support/
DProcess.h155 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
/external/eigen/bench/btl/actions/
Daction_lu_solve.hh101 double time=chronos.user_time(); in calculate()
/external/llvm/lib/Support/Windows/
DProcess.inc109 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
118 user_time = getTimeValueFromFILETIME(UserTime);
/external/chromium/base/
Dprocess_util_win.cc749 FILETIME user_time; in GetCPUUsage() local
754 &kernel_time, &user_time)) { in GetCPUUsage()
760 int64 system_time = (FileTimeToUTC(kernel_time) + FileTimeToUTC(user_time)) / in GetCPUUsage()
Dprocess_util_mac.mm413 TIME_VALUE_TO_TIMEVAL(&thread_info_data.user_time, &user_timeval);
418 TIME_VALUE_TO_TIMEVAL(&task_info_data.user_time, &user_timeval);
/external/llvm/lib/Support/Unix/
DProcess.inc156 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
159 llvm::tie(user_time, sys_time) = getRUsageTimes();