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.h30 double UserTime = 0.0; ///< User time elapsed. variable
43 double getProcessTime() const { return UserTime + SystemTime; } in getProcessTime()
44 double getUserTime() const { return UserTime; } in getUserTime()
57 UserTime += RHS.UserTime;
64 UserTime -= RHS.UserTime;
H A DProgram.h62 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.inc84 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
86 &UserTime) == 0)
89 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.cpp144 Result.UserTime = Seconds(user).count(); in getCurrentTime()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp5351 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" in BuildJobs()
5362 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory in BuildJobs()