Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTimer.h28 double UserTime; ///< User time elapsed. variable
34 : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0), in TimeRecord()
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.h61 std::chrono::microseconds UserTime; member
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dthreadaux.d68 long UserTime; member
102 long UserTime; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DProcess.inc88 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
90 &UserTime) == 0)
93 user_time = toDuration(UserTime);
H A DProgram.inc446 FILETIME CreationTime, ExitTime, KernelTime, UserTime;
449 &UserTime) &&
452 toDuration(UserTime));
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DTimer.cpp160 Result.UserTime = Seconds(user).count(); in getCurrentTime()
/netbsd-src/external/mit/libuv/dist/src/win/
H A Dutil.c648 cpu_info->cpu_times.user = sppi[i].UserTime.QuadPart / 10000; in uv_cpu_info()
H A Dwinapi.h4433 LARGE_INTEGER UserTime; member
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DDriver.cpp4095 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" in BuildJobs()
4106 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory in BuildJobs()