Home
last modified time | relevance | path

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

12

/external/libcxx/utils/google-benchmark/src/
Dtimers.cc69 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/
Dtimers.cc69 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/
Dtimers.cc69 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/
Dtimers.cc70 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/
Dportable_timer.hh74 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
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/perfetto/src/base/
Dtime.cc49 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/
Dmain.cpp154 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/
Dbuild_omnetpp55 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/
Dacct02.c76 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/
Dcpu_time.cc96 return info.user_time.seconds * kNumNanosecsPerSec + in GetThreadCpuTimeNanos()
97 info.user_time.microseconds * kNumNanosecsPerMicrosec; in GetThreadCpuTimeNanos()
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/
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()
DMachTask.mm286 TIME_VALUE_TO_TIMEVAL(&basic_info.user_time, &thread_tv);
342 TIME_VALUE_TO_TIMEVAL(&task_info.user_time, &current_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/
Dtime.h93 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/
Dclient_info.cc68 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/
Dkernbench202 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/
DProcess.h63 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DProcess.h64 std::chrono::nanoseconds &user_time,
/external/python/cpython3/Modules/
Dtimemodule.c1151 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/
DProcess.h81 std::chrono::nanoseconds &user_time,
/external/llvm-project/llvm/include/llvm/Support/
DProcess.h87 std::chrono::nanoseconds &user_time,
/external/eigen/bench/btl/actions/
Daction_lu_solve.hh101 double time=chronos.user_time(); in calculate()
/external/llvm-project/lldb/tools/darwin-threads/
Dexamine-threads.c458 basic_info->user_time.seconds, in main()
459 basic_info->user_time.microseconds, in main()
/external/ImageMagick/MagickCore/
Dlog.c1201 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()

12