Home
last modified time | relevance | path

Searched refs:total_time (Results 1 - 14 of 14) sorted by relevance

/third_party/curl/docs/examples/
H A Dfileupload.c38 curl_off_t speed_upload, total_time; in main() local
77 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME_T, &total_time); in main()
81 (unsigned long)(total_time / 1000000), in main()
82 (unsigned long)(total_time % 1000000)); in main()
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dtrace-parser.py36 total_time = sum(self.times_blit) + sum(self.times_sysmem) + sum(self.times_gmem) + sum(self.times_compute)
49 prologue_time, 100.0 * prologue_time / total_time,
50 binning_time, 100.0 * binning_time / total_time,
51 restore_clear_time, 100.0 * restore_clear_time / total_time,
52 draw_time, 100.0 * draw_time / total_time,
53 resolve_time, 100.0 * resolve_time / total_time,
54 sum(self.times_blit), 100.0 * sum(self.times_blit) / total_time,
55 sum(self.times_compute), 100.0 * sum(self.times_compute) / total_time,
56 sum(self.times_gmem), 100.0 * sum(self.times_gmem) / total_time,
57 sum(self.times_sysmem), 100.0 * sum(self.times_sysmem) / total_time,
[all...]
/third_party/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_cpu.c64 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time) in get_cpu_stats() argument
84 *total_time = filetime_to_scalar(ftNow) - filetime_to_scalar(ftCreation); in get_cpu_stats()
90 *total_time *= sysInfo.dwNumberOfProcessors; in get_cpu_stats()
101 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time) in get_cpu_stats() argument
168 *total_time = *busy_time + cp_time[CP_IDLE]; in get_cpu_stats()
176 get_cpu_stats(unsigned cpu_index, uint64_t *busy_time, uint64_t *total_time) in get_cpu_stats() argument
209 *total_time = *busy_time; in get_cpu_stats()
213 *total_time += v[i]; in get_cpu_stats()
/third_party/python/Tools/importbench/
H A Dimportbench.py26 total_time = 0
28 while total_time < seconds:
30 total_time += timer.timeit(1)
36 if total_time > seconds:
/third_party/node/deps/v8/src/d8/
H A Dd8-posix.cc113 static bool TimeIsOut(const struct timeval& start_time, const int& total_time) { in TimeIsOut() argument
114 if (total_time == -1) return false; in TimeIsOut()
120 if (seconds * 1000 > total_time) return true; in TimeIsOut()
124 if (seconds * 1000000 + useconds > total_time * 1000) { in TimeIsOut()
/third_party/node/deps/v8/src/logging/
H A Druntime-call-stats.cc78 V8_NOINLINE void SetTotal(base::TimeDelta total_time, in SetTotal() argument
80 if (total_time.InMicroseconds() == 0) { in SetTotal()
83 time_percent_ = 100.0 * time_ / total_time.InMicroseconds(); in SetTotal()
/third_party/musl/src/internal/
H A Ddynlink.h194 int total_time; member
/third_party/f2fs-tools/tools/f2fs_io/
H A Df2fs_io.c528 u64 total_time = 0, max_time = 0, max_time_t = 0; in do_write() local
595 total_time = get_current_us(); in do_write()
636 printf("Written %"PRIu64" bytes with pattern=%s, total_time=%"PRIu64" us, max_latency=%"PRIu64" us\n", in do_write()
638 get_current_us() - total_time, in do_write()
/third_party/FreeBSD/sys/dev/usb/
H A Dusb_hub.c604 int total_time; in uhub_port_debounce() local
611 for (total_time = 0; ; total_time += UHUB_DEBOUNCE_STEP) { in uhub_port_debounce()
634 if (total_time >= UHUB_DEBOUNCE_TIMEOUT) in uhub_port_debounce()
/third_party/vulkan-loader/scripts/
H A Dupdate_deps.py556 total_time = time.time() - start
558 print(f"Installed {self.name} ({self.commit}) in {total_time} seconds", flush=True)
/third_party/skia/platform_tools/android/apps/skottie/
H A Dskottie_metric.sql236 'total_time', ifnull(total_cpu_time.cpu_time, 0) + ifnull(hwui_gpu_completion3.gpu_completion_sum, 0),
/third_party/ffmpeg/libavfilter/
H A Dvf_deshake_opencl.c311 static double averaged_event_time_ms(unsigned long long total_time, int num_frames) { in averaged_event_time_ms() argument
312 return (double)total_time / (double)num_frames / 1000000.0; in averaged_event_time_ms()
/third_party/astc-encoder/Source/
H A Dastcenccli_toplevel.cpp2436 double total_time = (end_time - start_time) - ((repeats - 1.0) * avg_compression_time) - ((repeats - 1.0) * avg_decompression_time);
2440 printf(" Total time: %8.4f s\n", total_time);
/third_party/musl/ldso/linux/
H A Ddynlink.c3864 dlopen_cost.total_time = (total_end.tv_sec - total_start.tv_sec) * CLOCK_SECOND_TO_MILLI
3866 if ((dlopen_cost.total_time > DLOPEN_TIME_THRESHOLD || is_dlopen_debug_enable()) && current_so) {
3868 "total_time: %{public}d ms, "
3877 dlopen_cost.total_time,

Completed in 23 milliseconds