/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | cpumonitor.cc | 200 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/ |
D | portable_timer.hh | 74 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
|
D | portable_perf_analyzer_old.hh | 104 return _chronos.user_time(); in time_init() 118 return _chronos.user_time(); in time_calculate()
|
D | portable_perf_analyzer.hh | 86 return _chronos.user_time(); in time_calculate()
|
/external/chromium_org/content/gpu/ |
D | gpu_watchdog_thread.cc | 294 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/ |
D | BenchSysTimer_mach.cpp | 32 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/ |
D | process_metrics_win.cc | 202 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()
|
D | process_metrics_mac.cc | 243 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/ |
D | time_mac.cc | 90 return (thread_info_data.user_time.seconds * in ComputeThreadTicks() 92 thread_info_data.user_time.microseconds; in ComputeThreadTicks()
|
/external/llvm/include/llvm/Support/ |
D | Process.h | 155 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
|
/external/eigen/bench/btl/actions/ |
D | action_lu_solve.hh | 101 double time=chronos.user_time(); in calculate()
|
/external/llvm/lib/Support/Windows/ |
D | Process.inc | 109 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time, 118 user_time = getTimeValueFromFILETIME(UserTime);
|
/external/chromium/base/ |
D | process_util_win.cc | 749 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()
|
D | process_util_mac.mm | 413 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/ |
D | Process.inc | 156 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time, 159 llvm::tie(user_time, sys_time) = getRUsageTimes();
|