Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DTimer.h27 double UserTime; ///< User time elapsed. variable
33 : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0), in TimeRecord()
42 double getProcessTime() const { return UserTime + SystemTime; } in getProcessTime()
43 double getUserTime() const { return UserTime; } in getUserTime()
56 UserTime += RHS.UserTime;
63 UserTime -= RHS.UserTime;
H A DProgram.h61 std::chrono::microseconds UserTime; member
/llvm-project-15.0.7/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp382 FILETIME CreationTime, ExitTime, KernelTime, UserTime; in main() local
388 &UserTime); in main()
398 b.LowPart = UserTime.dwLowDateTime; in main()
399 b.HighPart = UserTime.dwHighDateTime; in main()
/llvm-project-15.0.7/openmp/runtime/src/
H A Dz_Windows_NT_util.cpp68 LARGE_INTEGER UserTime; member
94 LARGE_INTEGER UserTime; member
647 FILETIME CreationTime, ExitTime, KernelTime, UserTime; in __kmp_read_cpu_time() local
654 &KernelTime, &UserTime); in __kmp_read_cpu_time()
660 sec += UserTime.dwHighDateTime; in __kmp_read_cpu_time()
666 sec += UserTime.dwLowDateTime; in __kmp_read_cpu_time()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DProgramTest.cpp375 ASSERT_GE(ProcStat->UserTime, std::chrono::microseconds(0)); in TEST_F()
376 ASSERT_GE(ProcStat->TotalTime, ProcStat->UserTime); in TEST_F()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DProcess.inc88 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
90 &UserTime) == 0)
93 user_time = toDuration(UserTime);
H A DProgram.inc448 FILETIME CreationTime, ExitTime, KernelTime, UserTime;
451 &UserTime) &&
454 toDuration(UserTime));
/llvm-project-15.0.7/llvm/lib/Support/
H A DTimer.cpp185 Result.UserTime = Seconds(user).count(); in getCurrentTime()
/llvm-project-15.0.7/clang/lib/Driver/
H A DDriver.cpp4768 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" in BuildJobs()
4779 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory in BuildJobs()