Home
last modified time | relevance | path

Searched refs:UserTime (Results 1 – 17 of 17) 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/skia/third_party/externals/spirv-tools/test/
Dtimer_test.cpp33 double UserTime() override { return 0.012723; } in UserTime() function in spvtools::utils::__anon191453380111::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::__anon191453380111::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::__anon1c7653240111::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::__anon1c7653240111::MockCumulativeTimer
/third_party/spirv-tools/test/
Dtimer_test.cpp33 double UserTime() override { return 0.012723; } in UserTime() function in spvtools::utils::__anon64fae1430111::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::__anon64fae1430111::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/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/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/llvm-10.0/llvm/lib/Support/Windows/
DProcess.inc82 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
84 &UserTime) == 0)
87 user_time = toDuration(UserTime);
/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-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