Home
last modified time | relevance | path

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

/llvm-project/llvm/include/llvm/Support/
H A DTimer.h29 double UserTime = 0.0; ///< User time elapsed.
42 double getProcessTime() const { return UserTime + SystemTime; } in getSystemTime()
43 double getUserTime() const { return UserTime; } in getWallTime()
56 UserTime += RHS.UserTime;
63 UserTime -= RHS.UserTime;
27 double UserTime = 0.0; ///< User time elapsed. global() variable
H A DProgram.h61 std::chrono::microseconds UserTime; member
/llvm-project/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp376 FILETIME CreationTime, ExitTime, KernelTime, UserTime; in main() local
382 &UserTime); in main()
392 b.LowPart = UserTime.dwLowDateTime; in main()
393 b.HighPart = UserTime.dwHighDateTime; in main()
/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT_util.cpp69 LARGE_INTEGER UserTime; member
95 LARGE_INTEGER UserTime; member
649 FILETIME CreationTime, ExitTime, KernelTime, UserTime; in __kmp_read_cpu_time() local
656 &KernelTime, &UserTime); in __kmp_read_cpu_time()
662 sec += UserTime.dwHighDateTime; in __kmp_read_cpu_time()
668 sec += UserTime.dwLowDateTime; in __kmp_read_cpu_time()
/llvm-project/llvm/unittests/Support/
H A DProgramTest.cpp507 ASSERT_GE(ProcStat->UserTime, std::chrono::microseconds(0)); in TEST_F()
508 ASSERT_GE(ProcStat->TotalTime, ProcStat->UserTime); in TEST_F()
/llvm-project/llvm/lib/Support/Windows/
H A DProcess.inc89 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
91 &UserTime) == 0)
94 user_time = toDuration(UserTime);
H A DProgram.inc449 FILETIME CreationTime, ExitTime, KernelTime, UserTime;
452 &UserTime) &&
455 toDuration(UserTime));
/llvm-project/llvm/lib/Support/
H A DTimer.cpp145 Result.UserTime = Seconds(user).count();
/llvm-project/clang/lib/Driver/
H A DDriver.cpp5251 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" in combineAssembleBackend()
5262 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory in combineAssembleBackend()