Home
last modified time | relevance | path

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

/third_party/benchmark/src/
Dtimers.cc76 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument
81 user.HighPart = user_time.dwHighDateTime; in MakeTime()
82 user.LowPart = user_time.dwLowDateTime; in MakeTime()
97 return (static_cast<double>(info.user_time.seconds) + in MakeTime()
98 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime()
122 FILETIME user_time; in ProcessCPUUsage() local
124 &user_time)) in ProcessCPUUsage()
125 return MakeTime(kernel_time, user_time); in ProcessCPUUsage()
157 FILETIME user_time; in ThreadCPUUsage() local
159 &user_time); in ThreadCPUUsage()
[all …]
/third_party/ltp/testcases/kernel/syscalls/acct/
Dacct02.c80 int user_time = UNPACK(ACCT_MEMBER(ac_stime)); in verify_acct() local
113 tmp2 = user_time/clock_ticks; in verify_acct()
116 user_time, clock_ticks, tmp2); in verify_acct()
/third_party/node/deps/uvwasi/src/
Dclocks.c71 (time) = ((uvwasi_timestamp_t)(info.user_time.seconds) * NANOS_PER_SEC) + \
72 (info.user_time.microseconds * 1000) + \
/third_party/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`
/third_party/python/Modules/
Dtimemodule.c1188 FILETIME creation_time, exit_time, kernel_time, user_time; local
1195 &kernel_time, &user_time);
1212 large.u.LowPart = user_time.dwLowDateTime;
1213 large.u.HighPart = user_time.dwHighDateTime;
1381 FILETIME creation_time, exit_time, kernel_time, user_time; local
1388 &kernel_time, &user_time);
1405 large.u.LowPart = user_time.dwLowDateTime;
1406 large.u.HighPart = user_time.dwHighDateTime;
/third_party/rust/crates/nix/src/sys/
Dresource.rs307 pub fn user_time(&self) -> TimeVal { in user_time() method
438 let user = usage.user_time(); in test_self_cpu_time()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DProcess.h64 std::chrono::nanoseconds &user_time,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DProcess.h81 std::chrono::nanoseconds &user_time,
/third_party/node/deps/v8/src/base/platform/
Dtime.cc54 CHECK_LE(thread_info_data.user_time.seconds, in ComputeThreadTicks()
58 thread_info_data.user_time.seconds + thread_info_data.system_time.seconds; in ComputeThreadTicks()
67 micros += (thread_info_data.user_time.microseconds + in ComputeThreadTicks()
/third_party/ninja/src/
Dutil.cc773 FILETIME idle_time, kernel_time, user_time; in GetLoadAverage() local
775 GetSystemTimes(&idle_time, &kernel_time, &user_time); in GetLoadAverage()
783 FileTimeToTickCount(kernel_time) + FileTimeToTickCount(user_time); in GetLoadAverage()
/third_party/rust/crates/libc/src/unix/bsd/apple/
Dmod.rs862 pub user_time: time_value_t,
1184 pub user_time: time_value_t,
1294 pub user_time: time_value_t,
2048 self.user_time == other.user_time
2062 .field("user_time", &self.user_time)
2075 self.user_time.hash(state);
2515 && self.user_time == other.user_time
2527 let user_time = self.user_time; localVariable
2535 .field("user_time", &user_time)
2547 let user_time = self.user_time; localVariable
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DProcess.inc84 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
93 user_time = toDuration(UserTime);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DProcess.inc78 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
87 user_time = toDuration(UserTime);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DProcess.inc123 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
126 std::tie(user_time, sys_time) = getRUsageTimes();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DProcess.inc118 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
121 std::tie(user_time, sys_time) = getRUsageTimes();
/third_party/rust/crates/libc/src/unix/haiku/
Dnative.rs256 pub user_time: bigtime_t,
267 pub user_time: bigtime_t,