Home
last modified time | relevance | path

Searched refs:UserTime (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DTimer.h28 double UserTime; ///< User time elapsed. variable
32 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} in TimeRecord()
40 double getProcessTime() const { return UserTime + SystemTime; } in getProcessTime()
41 double getUserTime() const { return UserTime; } in getUserTime()
53 UserTime += RHS.UserTime;
59 UserTime -= RHS.UserTime;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTimer.h28 double UserTime; ///< User time elapsed. variable
32 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {} in TimeRecord()
40 double getProcessTime() const { return UserTime + SystemTime; } in getProcessTime()
41 double getUserTime() const { return UserTime; } in getUserTime()
53 UserTime += RHS.UserTime;
59 UserTime -= RHS.UserTime;
/third_party/spirv-tools/test/
Dtimer_test.cpp33 double UserTime() override { return 0.012723; } in UserTime() function in spvtools::utils::__anon92cabf650111::MockTimer
56 EXPECT_EQ(0.012723, timer.UserTime()); in TEST()
94 double UserTime() override { return count_stop_ * 0.012723; } in UserTime() function in spvtools::utils::__anon92cabf650111::MockCumulativeTimer
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dtimer_test.cpp33 double UserTime() override { return 0.012723; } in UserTime() function in spvtools::utils::__anone024a2060111::MockTimer
56 EXPECT_EQ(0.012723, timer.UserTime()); in TEST()
94 double UserTime() override { return count_stop_ * 0.012723; } in UserTime() function in spvtools::utils::__anone024a2060111::MockCumulativeTimer
/third_party/skia/third_party/externals/spirv-tools/test/
Dtimer_test.cpp33 double UserTime() override { return 0.012723; } in UserTime() function in spvtools::utils::__anon45b15c1a0111::MockTimer
56 EXPECT_EQ(0.012723, timer.UserTime()); in TEST()
94 double UserTime() override { return count_stop_ * 0.012723; } in UserTime() function in spvtools::utils::__anon45b15c1a0111::MockCumulativeTimer
/third_party/skia/third_party/externals/spirv-tools/source/util/
Dtimer.h139 virtual double UserTime() { in UserTime() function
320 if (usr_time_ >= 0 && Timer::UserTime() >= 0) in Stop()
321 usr_time_ += Timer::UserTime(); in Stop()
350 double UserTime() override { return usr_time_; } in UserTime() function
Dtimer.cpp89 *report_stream_ << std::setw(12) << UserTime() << std::setw(12) in Report()
/third_party/spirv-tools/source/util/
Dtimer.h139 virtual double UserTime() { in UserTime() function
320 if (usr_time_ >= 0 && Timer::UserTime() >= 0) in Stop()
321 usr_time_ += Timer::UserTime(); in Stop()
350 double UserTime() override { return usr_time_; } in UserTime() function
Dtimer.cpp89 *report_stream_ << std::setw(12) << UserTime() << std::setw(12) in Report()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
Dtimer.h139 virtual double UserTime() { in UserTime() function
320 if (usr_time_ >= 0 && Timer::UserTime() >= 0) in Stop()
321 usr_time_ += Timer::UserTime(); in Stop()
350 double UserTime() override { return usr_time_; } in UserTime() function
Dtimer.cpp89 *report_stream_ << std::setw(12) << UserTime() << std::setw(12) in Report()
/third_party/boost/boost/interprocess/detail/
Dos_thread_functions.hpp219 winapi::interprocess_filetime CreationTime, ExitTime, KernelTime, UserTime; in get_current_process_creation_time() local
222 ( winapi::get_current_process(), &CreationTime, &ExitTime, &KernelTime, &UserTime); in get_current_process_creation_time()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DProcess.inc88 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
90 &UserTime) == 0)
93 user_time = toDuration(UserTime);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DProcess.inc82 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
84 &UserTime) == 0)
87 user_time = toDuration(UserTime);
/third_party/grpc/test/cpp/qps/
Ddriver.cc107 static double UserTime(const ClientStats& s) { return s.time_user(); } in UserTime() function
222 sum(result->client_stats(), UserTime)); in postprocess_scenario_result()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DTimer.cpp135 Result.UserTime = Seconds(user).count(); in getCurrentTime()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTimer.cpp133 Result.UserTime = Seconds(user).count(); in getCurrentTime()
/third_party/libuv/src/win/
Dutil.c648 cpu_info->cpu_times.user = sppi[i].UserTime.QuadPart / 10000; in uv_cpu_info()
Dwinapi.h4433 LARGE_INTEGER UserTime; member