Home
last modified time | relevance | path

Searched refs:total_time (Results 1 – 8 of 8) sorted by relevance

/openbsd/gnu/usr.bin/binutils-2.17/gprof/
H A Dhist.c55 static double total_time; /* Total time for all routines. */ variable
293 total_time += time; in hist_assign_samples()
337 total_time -= credit; in hist_assign_samples()
344 total_time)); in hist_assign_samples()
361 if (total_time > 0.0) in print_header()
364 100.0 / total_time, total_time / hz, hist_dimension); in print_header()
372 if (total_time <= 0.0) in print_header()
377 total_time = 1.0; in print_header()
399 total_time > 0.0 ? 100 * sym->hist.time / total_time : 0.0, in print_line()
403 total_time > 0.0 ? 100 * sym->hist.time / total_time : 0.0, in print_line()
/openbsd/gnu/usr.bin/binutils/gprof/
H A Dhist.c54 static double total_time; /* Total time for all routines. */ variable
296 total_time += time; in hist_assign_samples()
340 total_time -= credit; in hist_assign_samples()
347 total_time)); in hist_assign_samples()
365 if (total_time > 0.0)
368 100.0 / total_time, total_time / hz, hist_dimension);
376 if (total_time <= 0.0)
381 total_time = 1.0;
405 total_time > 0.0 ? 100 * sym->hist.time / total_time : 0.0,
409 total_time > 0.0 ? 100 * sym->hist.time / total_time : 0.0,
/openbsd/gnu/usr.bin/perl/t/
H A Dharness119 my %total_time;
209 $total_time{$file_dir} += $times{$file} || 0;
220 $total_time{$file} = $times{$file} || 0;
227 $total_time{$file} = $times{$file} || 0;
268 $total_time{$partial_serial_dir} += $par_time;
303 return $total_time{$b} <=> $total_time{$a} || lc $a cmp lc $b;
/openbsd/gnu/llvm/clang/utils/analyzer/
H A DSumTimerInfo.py19 total_time = 0.0 variable
66 total_time = total_time + float(s[6]) variable
/openbsd/gnu/llvm/llvm/utils/lit/lit/
H A Ddisplay.py57 total_time = self.time_elapsed + total_time_remaining
59 if total_time > 0:
60 return self.time_elapsed / total_time
/openbsd/gnu/llvm/lldb/examples/python/
H A Dperformance.py363 with Timer() as total_time:
389 print('Total time = %.03f sec.' % total_time.interval)
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2484 const auto total_time = end_time - start_time; in TestPacketSpeed() local
2487 ((float)num_packets) / duration<float>(total_time).count(); in TestPacketSpeed()
2488 auto average_per_packet = num_packets > 0 ? total_time / num_packets in TestPacketSpeed()
2497 total_time, standard_deviation); in TestPacketSpeed()
2503 send_size, recv_size, duration<float>(total_time), in TestPacketSpeed()
2539 const auto total_time = end_time - start_time; in TestPacketSpeed() local
2541 duration<float>(total_time).count() / in TestPacketSpeed()
2544 ((float)packet_count) / duration<float>(total_time).count(); in TestPacketSpeed()
2546 ? total_time / packet_count in TestPacketSpeed()
2553 total_time); in TestPacketSpeed()
[all …]
/openbsd/usr.bin/ssh/
H A Dclientloop.c1438 double start_time, total_time; in client_loop() local
1662 total_time = monotime_double() - start_time; in client_loop()
1665 (unsigned long long)obytes, (unsigned long long)ibytes, total_time); in client_loop()
1666 if (total_time > 0) in client_loop()
1668 obytes / total_time, ibytes / total_time); in client_loop()