Searched refs:user_time (Results 1 - 25 of 28) sorted by relevance

12

/external/libcxx/utils/google-benchmark/src/
H A Dtimers.cc62 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { argument
67 user.HighPart = user_time.dwHighDateTime;
68 user.LowPart = user_time.dwLowDateTime;
83 return (static_cast<double>(info.user_time.seconds) +
84 static_cast<double>(info.user_time.microseconds) * 1e-6 +
115 FILETIME user_time;
117 &user_time))
118 return MakeTime(kernel_time, user_time);
139 FILETIME user_time;
141 &user_time);
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_timer.hh74 double user_time() { return elapsed(); } function in class:Portable_Timer
117 return user_time();
120 double user_time() function in class:Portable_Timer
169 return user_time();
172 double user_time() function in class:Portable_Timer
H A Dportable_perf_analyzer_old.hh104 return _chronos.user_time();
118 return _chronos.user_time();
H A Dportable_perf_analyzer.hh86 return _chronos.user_time();
/external/google-benchmark/src/
H A Dtimers.cc66 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { argument
71 user.HighPart = user_time.dwHighDateTime;
72 user.LowPart = user_time.dwLowDateTime;
87 return (static_cast<double>(info.user_time.seconds) +
88 static_cast<double>(info.user_time.microseconds) * 1e-6 +
112 FILETIME user_time; local
114 &user_time))
115 return MakeTime(kernel_time, user_time);
143 FILETIME user_time; local
145 &user_time);
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DProcess.h50 /// This static function will set \p user_time to the amount of CPU time
58 TimeValue& user_time,
/external/toolchain-utils/bestflags/examples/omnetpp/
H A Dbuild_omnetpp55 user_time=$(cat build_timer$file | grep "user" | cut -d "u" -f 1)
64 echo $checksum $user_time $output_file $file_size $size
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
H A DProcess.inc107 Process::GetTimeUsage(TimeValue& elapsed, TimeValue& user_time,
114 user_time = TimeValue(
124 user_time.seconds(0);
125 user_time.microseconds(0);
/external/llvm/include/llvm/Support/
H A DProcess.h55 /// This static function will set \p user_time to the amount of CPU time
61 /// \param user_time Returns the current amount of user time for the process
63 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DProcess.h55 /// This static function will set \p user_time to the amount of CPU time
61 /// \param user_time Returns the current amount of user time for the process
64 std::chrono::nanoseconds &user_time,
/external/autotest/client/site_tests/platform_CompressedSwapPerf/src/
H A Dhog.c42 uint64_t user_time; member in struct:PokeResult
193 result.user_time = DiffTimeval(usage_start.ru_utime,
/external/google-breakpad/src/client/windows/crash_generation/
H A Dclient_info.cc68 FILETIME creation_time, exit_time, kernel_time, user_time; local
70 &kernel_time, &user_time)) {
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DProcess.inc85 TimeValue& elapsed, TimeValue& user_time, TimeValue& sys_time)
95 user_time.seconds( UserTime / 10000000 );
96 user_time.nanoseconds( unsigned(UserTime % 10000000) * 100 );
/external/eigen/bench/btl/actions/
H A Daction_lu_solve.hh101 double time=chronos.user_time();
/external/ltp/utils/benchmark/kernbench-0.42/
H A Dkernbench202 read elapsed_time user_time sys_time percent ctx sleeps <timelog
204 temp_user=`add_data_point $user_time $temp_user`
/external/libchrome/base/time/
H A Dtime_mac.cc95 thread_info_data.user_time.seconds +
98 absolute_micros += (thread_info_data.user_time.microseconds +
/external/libchrome/base/process/
H A Dprocess_metrics_mac.cc281 TIME_VALUE_TO_TIMEVAL(&thread_info_data.user_time, &user_timeval);
286 TIME_VALUE_TO_TIMEVAL(&task_info_data.user_time, &user_timeval);
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
H A DProcess.inc84 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
93 user_time = toDuration(UserTime);
/external/autotest/client/site_tests/platform_CompressedSwapPerf/
H A Dplatform_CompressedSwapPerf.py228 @return: A tuple (wall_time, user_time, sys_time, fault_count)
238 user_time = result_unpacked[1]
242 return (wall_time, user_time, sys_time, fault_count)
/external/ImageMagick/MagickCore/
H A Dlog.c956 user_time;
981 user_time=GetUserTime(&log_info->timer);
1009 (1000.0*(elapsed_time-floor(elapsed_time))+0.5),user_time,
1145 q+=FormatLocaleString(q,extent,"%0.3fu",user_time);
940 user_time; local
H A Didentify.c467 user_time;
566 user_time=GetUserTime(&image->timer);
630 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
1400 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
465 user_time; local
H A Dnt-base.c2714 } user_time;
2721 &kernel_time.filetime,&user_time.filetime);
2724 return((double) 1.0e-7*(kernel_time.filetime64+user_time.filetime64));
2670 } user_time; local
/external/llvm/lib/Support/Unix/
H A DProcess.inc124 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
127 std::tie(user_time, sys_time) = getRUsageTimes();
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
H A DProcess.inc115 void Process::GetTimeUsage(TimePoint<> &elapsed, std::chrono::nanoseconds &user_time,
118 std::tie(user_time, sys_time) = getRUsageTimes();
/external/v8/src/base/platform/
H A Dtime.cc44 thread_info_data.user_time.seconds +
47 absolute_micros += (thread_info_data.user_time.microseconds +

Completed in 913 milliseconds

12