Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTimer.h27 double UserTime = 0.0; ///< User time elapsed. variable
40 double getProcessTime() const { return UserTime + SystemTime; } in getProcessTime()
41 double getUserTime() const { return UserTime; } in getUserTime()
54 UserTime += RHS.UserTime;
61 UserTime -= RHS.UserTime;
H A DProgram.h61 std::chrono::microseconds UserTime; member
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dz_Windows_NT_util.cpp69 LARGE_INTEGER UserTime;
95 LARGE_INTEGER UserTime;
649 FILETIME CreationTime, ExitTime, KernelTime, UserTime; in __kmp_read_cpu_time()
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()
68 LARGE_INTEGER UserTime; global() member
94 LARGE_INTEGER UserTime; global() member
648 FILETIME CreationTime, ExitTime, KernelTime, UserTime; __kmp_read_cpu_time() local
/freebsd/contrib/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));
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DTimer.cpp185 Result.UserTime = Seconds(user).count(); in getCurrentTime()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp5005 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" in BuildJobs()
5016 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory in BuildJobs()