/external/libcxx/utils/google-benchmark/src/ |
D | timers.cc | 69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument 74 user.HighPart = user_time.dwHighDateTime; in MakeTime() 75 user.LowPart = user_time.dwLowDateTime; in MakeTime() 90 return (static_cast<double>(info.user_time.seconds) + in MakeTime() 91 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime() 115 FILETIME user_time; in ProcessCPUUsage() local 117 &user_time)) in ProcessCPUUsage() 118 return MakeTime(kernel_time, user_time); in ProcessCPUUsage() 146 FILETIME user_time; in ThreadCPUUsage() local 148 &user_time); in ThreadCPUUsage() [all …]
|
/external/llvm-project/libcxx/utils/google-benchmark/src/ |
D | timers.cc | 69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument 74 user.HighPart = user_time.dwHighDateTime; in MakeTime() 75 user.LowPart = user_time.dwLowDateTime; in MakeTime() 90 return (static_cast<double>(info.user_time.seconds) + in MakeTime() 91 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime() 115 FILETIME user_time; in ProcessCPUUsage() local 117 &user_time)) in ProcessCPUUsage() 118 return MakeTime(kernel_time, user_time); in ProcessCPUUsage() 146 FILETIME user_time; in ThreadCPUUsage() local 148 &user_time); in ThreadCPUUsage() [all …]
|
/external/llvm-project/llvm/utils/benchmark/src/ |
D | timers.cc | 69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument 74 user.HighPart = user_time.dwHighDateTime; in MakeTime() 75 user.LowPart = user_time.dwLowDateTime; in MakeTime() 90 return (static_cast<double>(info.user_time.seconds) + in MakeTime() 91 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime() 115 FILETIME user_time; in ProcessCPUUsage() local 117 &user_time)) in ProcessCPUUsage() 118 return MakeTime(kernel_time, user_time); in ProcessCPUUsage() 146 FILETIME user_time; in ThreadCPUUsage() local 148 &user_time); in ThreadCPUUsage() [all …]
|
/external/google-benchmark/src/ |
D | timers.cc | 70 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument 75 user.HighPart = user_time.dwHighDateTime; in MakeTime() 76 user.LowPart = user_time.dwLowDateTime; in MakeTime() 91 return (static_cast<double>(info.user_time.seconds) + in MakeTime() 92 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime() 116 FILETIME user_time; in ProcessCPUUsage() local 118 &user_time)) in ProcessCPUUsage() 119 return MakeTime(kernel_time, user_time); in ProcessCPUUsage() 147 FILETIME user_time; in ThreadCPUUsage() local 149 &user_time); in ThreadCPUUsage() [all …]
|
/external/eigen/bench/btl/generic_bench/timers/ |
D | portable_timer.hh | 74 double user_time() { return elapsed(); } in user_time() function in Portable_Timer 117 return user_time(); in elapsed() 120 double user_time() in user_time() function in Portable_Timer 169 return user_time(); in elapsed() 172 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/perfetto/src/base/ |
D | time.cc | 49 uint64_t user_time = user_ftime.dwHighDateTime * 0x100000000 + in GetThreadCPUTimeNs() local 52 return TimeNanos((kernel_time + user_time) * 100); in GetThreadCPUTimeNs()
|
/external/flac/src/utils/flactimer/ |
D | main.cpp | 154 FILETIME user_time; in main() local 155 if(!GetProcessTimes(pi.hProcess, &creation_time, &exit_time, &kernel_time, &user_time)) { in main() 162 uint64_t user_nsec = time2nsec(user_time); in main()
|
/external/toolchain-utils/bestflags/examples/omnetpp/ |
D | build_omnetpp | 55 user_time=$(cat build_timer$file | grep "user" | cut -d "u" -f 1) 64 echo $checksum $user_time $output_file $file_size $size
|
/external/ltp/testcases/kernel/syscalls/acct/ |
D | acct02.c | 76 int user_time = UNPACK(ACCT_MEMBER(ac_stime)); in verify_acct() local 109 tmp2 = user_time/clock_ticks; in verify_acct() 112 user_time, clock_ticks, tmp2); in verify_acct()
|
/external/webrtc/rtc_base/ |
D | cpu_time.cc | 96 return info.user_time.seconds * kNumNanosecsPerSec + in GetThreadCpuTimeNanos() 97 info.user_time.microseconds * kNumNanosecsPerMicrosec; in GetThreadCpuTimeNanos()
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachThread.cpp | 179 float user = (float)basicInfo.user_time.seconds + in GetBasicInfoAsString() 180 (float)basicInfo.user_time.microseconds / 1000000.0f; in GetBasicInfoAsString() 181 float system = (float)basicInfo.user_time.seconds + in GetBasicInfoAsString() 182 (float)basicInfo.user_time.microseconds / 1000000.0f; in GetBasicInfoAsString() 333 GetSP(INVALID_NUB_ADDRESS), m_basic_info.user_time.seconds, in Dump() 334 m_basic_info.user_time.microseconds, m_basic_info.system_time.seconds, in Dump()
|
D | MachTask.mm | 286 TIME_VALUE_TO_TIMEVAL(&basic_info.user_time, &thread_tv); 342 TIME_VALUE_TO_TIMEVAL(&task_info.user_time, ¤t_used_time); 565 float user = (float)info->user_time.seconds + 566 (float)info->user_time.microseconds / 1000000.0f; 567 float system = (float)info->user_time.seconds + 568 (float)info->user_time.microseconds / 1000000.0f; 570 "0x%8.8llx, resident_size = 0x%8.8llx, user_time = %f, "
|
/external/perfetto/include/perfetto/base/ |
D | time.h | 93 return TimeNanos(info.user_time.seconds * 1000000000LL + in GetThreadCPUTimeNs() 94 info.user_time.microseconds * 1000LL + in GetThreadCPUTimeNs()
|
/external/google-breakpad/src/client/windows/crash_generation/ |
D | client_info.cc | 68 FILETIME creation_time, exit_time, kernel_time, user_time; in Initialize() local 70 &kernel_time, &user_time)) { in Initialize()
|
/external/ltp/utils/benchmark/kernbench-0.42/ |
D | kernbench | 202 read elapsed_time user_time sys_time percent ctx sleeps <timelog 204 temp_user=`add_data_point $user_time $temp_user`
|
/external/llvm/include/llvm/Support/ |
D | Process.h | 63 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Process.h | 64 std::chrono::nanoseconds &user_time,
|
/external/python/cpython3/Modules/ |
D | timemodule.c | 1151 FILETIME creation_time, exit_time, kernel_time, user_time; local 1158 &kernel_time, &user_time); 1175 large.u.LowPart = user_time.dwLowDateTime; 1176 large.u.HighPart = user_time.dwHighDateTime; 1344 FILETIME creation_time, exit_time, kernel_time, user_time; local 1351 &kernel_time, &user_time); 1368 large.u.LowPart = user_time.dwLowDateTime; 1369 large.u.HighPart = user_time.dwHighDateTime;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Process.h | 81 std::chrono::nanoseconds &user_time,
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | Process.h | 87 std::chrono::nanoseconds &user_time,
|
/external/eigen/bench/btl/actions/ |
D | action_lu_solve.hh | 101 double time=chronos.user_time(); in calculate()
|
/external/llvm-project/lldb/tools/darwin-threads/ |
D | examine-threads.c | 458 basic_info->user_time.seconds, in main() 459 basic_info->user_time.microseconds, in main()
|
/external/ImageMagick/MagickCore/ |
D | log.c | 1201 user_time; in TranslateEvent() local 1226 user_time=GetUserTime(&log_info->timer); in TranslateEvent() 1254 (1000000.0*(elapsed_time-floor(elapsed_time))+0.5),user_time, in TranslateEvent() 1399 q+=FormatLocaleString(q,extent,"%0.3fu",user_time); in TranslateEvent()
|