/external/libcxx/utils/google-benchmark/src/ |
D | timers.cc | 69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument 74 user.HighPart = user_time.dwHighDateTime; in MakeTime() 75 user.LowPart = user_time.dwLowDateTime; in MakeTime() 90 return (static_cast<double>(info.user_time.seconds) + in MakeTime() 91 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime() 115 FILETIME user_time; in ProcessCPUUsage() local 117 &user_time)) in ProcessCPUUsage() 118 return MakeTime(kernel_time, user_time); in ProcessCPUUsage() 146 FILETIME user_time; in ThreadCPUUsage() local 148 &user_time); in ThreadCPUUsage() [all …]
|
/external/google-benchmark/src/ |
D | timers.cc | 69 double MakeTime(FILETIME const& kernel_time, FILETIME const& user_time) { in MakeTime() argument 74 user.HighPart = user_time.dwHighDateTime; in MakeTime() 75 user.LowPart = user_time.dwLowDateTime; in MakeTime() 90 return (static_cast<double>(info.user_time.seconds) + in MakeTime() 91 static_cast<double>(info.user_time.microseconds) * 1e-6 + in MakeTime() 115 FILETIME user_time; in ProcessCPUUsage() local 117 &user_time)) in ProcessCPUUsage() 118 return MakeTime(kernel_time, user_time); in ProcessCPUUsage() 146 FILETIME user_time; in ThreadCPUUsage() local 148 &user_time); in ThreadCPUUsage() [all …]
|
/external/eigen/bench/btl/generic_bench/timers/ |
D | portable_timer.hh | 74 double user_time() { return elapsed(); } in user_time() function in Portable_Timer 117 return user_time(); in elapsed() 120 double user_time() in user_time() function in Portable_Timer 169 return user_time(); in elapsed() 172 double user_time() in user_time() function in Portable_Timer
|
D | portable_perf_analyzer_old.hh | 104 return _chronos.user_time(); in time_init() 118 return _chronos.user_time(); in time_calculate()
|
D | portable_perf_analyzer.hh | 86 return _chronos.user_time(); in time_calculate()
|
/external/perfetto/src/base/ |
D | time.cc | 46 uint64_t user_time = user_ftime.dwHighDateTime * 0x100000000 + in GetThreadCPUTimeNs() local 49 return TimeNanos((kernel_time + user_time) * 100); in GetThreadCPUTimeNs()
|
/external/toolchain-utils/bestflags/examples/omnetpp/ |
D | build_omnetpp | 55 user_time=$(cat build_timer$file | grep "user" | cut -d "u" -f 1) 64 echo $checksum $user_time $output_file $file_size $size
|
/external/perfetto/include/perfetto/base/ |
D | time.h | 92 return TimeNanos(info.user_time.seconds * 1000000000LL + in GetThreadCPUTimeNs() 93 info.user_time.microseconds * 1000LL + in GetThreadCPUTimeNs()
|
/external/google-breakpad/src/client/windows/crash_generation/ |
D | client_info.cc | 68 FILETIME creation_time, exit_time, kernel_time, user_time; in Initialize() local 70 &kernel_time, &user_time)) { in Initialize()
|
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | Process.inc | 109 Process::GetTimeUsage(TimeValue& elapsed, TimeValue& user_time, 116 user_time = TimeValue( 126 user_time.seconds(0); 127 user_time.microseconds(0);
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | Process.inc | 85 TimeValue& elapsed, TimeValue& user_time, TimeValue& sys_time) 95 user_time.seconds( UserTime / 10000000 ); 96 user_time.nanoseconds( unsigned(UserTime % 10000000) * 100 );
|
/external/autotest/client/site_tests/platform_CompressedSwapPerf/src/ |
D | hog.c | 42 uint64_t user_time; member 193 result.user_time = DiffTimeval(usage_start.ru_utime, in main()
|
/external/python/cpython3/Modules/ |
D | timemodule.c | 1105 FILETIME creation_time, exit_time, kernel_time, user_time; in _PyTime_GetProcessTimeWithInfo() local 1112 &kernel_time, &user_time); in _PyTime_GetProcessTimeWithInfo() 1129 large.u.LowPart = user_time.dwLowDateTime; in _PyTime_GetProcessTimeWithInfo() 1130 large.u.HighPart = user_time.dwHighDateTime; in _PyTime_GetProcessTimeWithInfo() 1294 FILETIME creation_time, exit_time, kernel_time, user_time; in _PyTime_GetThreadTimeWithInfo() local 1301 &kernel_time, &user_time); in _PyTime_GetThreadTimeWithInfo() 1318 large.u.LowPart = user_time.dwLowDateTime; in _PyTime_GetThreadTimeWithInfo() 1319 large.u.HighPart = user_time.dwHighDateTime; in _PyTime_GetThreadTimeWithInfo()
|
/external/ltp/utils/benchmark/kernbench-0.42/ |
D | kernbench | 202 read elapsed_time user_time sys_time percent ctx sleeps <timelog 204 temp_user=`add_data_point $user_time $temp_user`
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | Process.h | 58 TimeValue& user_time,
|
/external/llvm/include/llvm/Support/ |
D | Process.h | 63 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Process.h | 64 std::chrono::nanoseconds &user_time,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | Process.h | 63 std::chrono::nanoseconds &user_time,
|
/external/eigen/bench/btl/actions/ |
D | action_lu_solve.hh | 101 double time=chronos.user_time(); in calculate()
|
/external/autotest/client/site_tests/platform_CompressedSwapPerf/ |
D | platform_CompressedSwapPerf.py | 238 user_time = result_unpacked[1] 242 return (wall_time, user_time, sys_time, fault_count)
|
/external/ImageMagick/MagickCore/ |
D | log.c | 955 user_time; in TranslateEvent() local 980 user_time=GetUserTime(&log_info->timer); in TranslateEvent() 1008 (1000.0*(elapsed_time-floor(elapsed_time))+0.5),user_time, in TranslateEvent() 1144 q+=FormatLocaleString(q,extent,"%0.3fu",user_time); in TranslateEvent()
|
D | identify.c | 506 user_time; in IdentifyImage() local 608 user_time=GetUserTime(&image->timer); in IdentifyImage() 672 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time, in IdentifyImage() 1490 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time); in IdentifyImage()
|
/external/grpc-grpc-java/benchmarks/src/main/proto/grpc/testing/ |
D | control.proto | 214 // server load based on user_time (0.85 => 85%) 218 // client load based on user_time (0.85 => 85%)
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | control.proto | 227 // server load based on user_time (0.85 => 85%) 231 // client load based on user_time (0.85 => 85%)
|
/external/v8/src/base/platform/ |
D | time.cc | 44 thread_info_data.user_time.seconds + in ComputeThreadTicks() 47 absolute_micros += (thread_info_data.user_time.microseconds + in ComputeThreadTicks()
|