Home
last modified time | relevance | path

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

/llvm-project-15.0.7/third-party/benchmark/src/
H A Dtimers.cc71 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument
76 user.HighPart = user_time.dwHighDateTime; in MakeTime()
77 user.LowPart = user_time.dwLowDateTime; in MakeTime()
92 return (static_cast<double>(info.user_time.seconds) + in MakeTime()
93 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime()
117 FILETIME user_time; in ProcessCPUUsage() local
119 &user_time)) in ProcessCPUUsage()
120 return MakeTime(kernel_time, user_time); in ProcessCPUUsage()
148 FILETIME user_time; in ThreadCPUUsage() local
150 &user_time); in ThreadCPUUsage()
[all …]
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachThread.cpp179 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()
H A DMachTask.mm286 TIME_VALUE_TO_TIMEVAL(&basic_info.user_time, &thread_tv);
342 TIME_VALUE_TO_TIMEVAL(&task_info.user_time, &current_used_time);
572 float user = (float)info->user_time.seconds +
573 (float)info->user_time.microseconds / 1000000.0f;
574 float system = (float)info->user_time.seconds +
575 (float)info->user_time.microseconds / 1000000.0f;
577 "0x%8.8llx, resident_size = 0x%8.8llx, user_time = %f, "
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DProcess.h86 std::chrono::nanoseconds &user_time,
/llvm-project-15.0.7/lldb/tools/darwin-threads/
H A Dexamine-threads.c458 basic_info->user_time.seconds, in main()
459 basic_info->user_time.microseconds, in main()
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProcess.inc123 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
126 std::tie(user_time, sys_time) = getRUsageTimes();
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DProcess.inc84 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
93 user_time = toDuration(UserTime);