HomeSort by: relevance | last modified time | path
    Searched refs:user_time (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
timers.cc 69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) {
74 user.HighPart = user_time.dwHighDateTime;
75 user.LowPart = user_time.dwLowDateTime;
90 return (static_cast<double>(info.user_time.seconds) +
91 static_cast<double>(info.user_time.microseconds) * 1e-6 +
115 FILETIME user_time; local
117 &user_time))
118 return MakeTime(kernel_time, user_time);
146 FILETIME user_time; local
148 &user_time);
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
timers.cc 69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) {
74 user.HighPart = user_time.dwHighDateTime;
75 user.LowPart = user_time.dwLowDateTime;
90 return (static_cast<double>(info.user_time.seconds) +
91 static_cast<double>(info.user_time.microseconds) * 1e-6 +
115 FILETIME user_time; local
117 &user_time))
118 return MakeTime(kernel_time, user_time);
146 FILETIME user_time; local
148 &user_time);
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
time_1.h 115 } kernel_time, user_time; local
131 &kernel_time.ft, &user_time.ft);
133 *user_sec = user_time.ulltime / 10000000;
134 *user_usec = (user_time.ulltime % 10000000) / 10;
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
time_1.h 115 } kernel_time, user_time; local
131 &kernel_time.ft, &user_time.ft);
133 *user_sec = user_time.ulltime / 10000000;
134 *user_usec = (user_time.ulltime % 10000000) / 10;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Process.h 78 /// This static function will set \p user_time to the amount of CPU time
84 /// \param user_time Returns the current amount of user time for the process
87 std::chrono::nanoseconds &user_time,
  /src/external/bsd/top/dist/machine/
m_macosx.c 433 cputime = RP(pp, user_time).seconds + RP(pp, system_time).seconds;
471 // 100.0 * weighted_cpu(pct, (RP(pp, user_time).seconds + RP(pp, system_time).seconds)),
939 t_utime += t_info.user_time.seconds;
950 RP(mp, user_time).seconds = t_utime;
  /src/external/gpl3/gdb/dist/gdb/
darwin-nat-info.c 165 PRINT_TV_FIELD (&task_info_data.basic, user_time);
190 PRINT_TV_FIELD (&task_info_data.thread_times, user_time);
389 PRINT_FIELD (&thread_info_data.basic, user_time);
  /src/external/gpl3/gdb.old/dist/gdb/
darwin-nat-info.c 165 PRINT_TV_FIELD (&task_info_data.basic, user_time);
190 PRINT_TV_FIELD (&task_info_data.thread_times, user_time);
389 PRINT_FIELD (&thread_info_data.basic, user_time);
  /src/external/mit/libuv/dist/src/win/
util.c 877 FILETIME create_time, exit_time, kernel_time, user_time; local
887 &user_time);
897 ret = FileTimeToSystemTime(&user_time, &user_system_time);
937 FILETIME create_time, exit_time, kernel_time, user_time; local
945 &user_time);
955 ret = FileTimeToSystemTime(&user_time, &user_system_time);
  /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
Process.inc 84 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
93 user_time = toDuration(UserTime);
  /src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
Process.inc 124 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
127 std::tie(user_time, sys_time) = getRUsageTimes();
  /src/external/mit/libuv/dist/src/unix/
core.c 1095 rusage->ru_utime.tv_sec = info.user_time.seconds;
1096 rusage->ru_utime.tv_usec = info.user_time.microseconds;

Completed in 21 milliseconds