Home
last modified time | relevance | path

Searched refs:total_secs (Results 1 – 25 of 63) sorted by relevance

123

/dports/net-mgmt/flowviewer/FlowViewer_4.5/tools/
H A Danalyze_flowmonitor_debug56 …if ($elapsed_secs > $cutoff) { print " ***\n"; $total_secs += $elapsed_secs; $total_excess += $exc…
60 …if ($elapsed_secs > $cutoff) { print " $filter_name "; print $_; $total_secs += $elapsed_secs; $…
66 $total_secs = int($total_secs + 0.5);
69 print "\n Sum of elapsed times greater than cutoff: $total_secs secs.";
/dports/audio/p5-Audio-MPD-Common/Audio-MPD-Common-2.003/lib/Audio/MPD/Common/
H A DTime.pm41 total_secs => [ get => 'total_secs' ],
67 my $total_secs = $seconds_total % 60;
68 my $total = sprintf "%d:%02d", $total_mins, $total_secs;
91 total_secs => $total_secs,
/dports/www/trafficserver/trafficserver-9.1.1/iocore/aio/
H A Dtest_AIO.cc185 double total_secs = 0.0; in dump_summary() local
191 total_secs += secs; in dump_summary()
199 total_secs /= orig_n_accessors; in dump_summary()
200 float sr = (total_seq_reads * seq_read_size) / total_secs; in dump_summary()
202 float sw = (total_seq_writes * seq_write_size) / total_secs; in dump_summary()
204 float rr = (total_rand_reads * rand_read_size) / total_secs; in dump_summary()
206 …ec %0.1f ops/sec %0.1f ops/sec/disk seq_read\n", total_seq_reads, sr, total_seq_reads / total_secs, in dump_summary()
207 total_seq_reads / total_secs / n_disk_path); in dump_summary()
209 total_seq_writes / total_secs, total_seq_writes / total_secs / n_disk_path); in dump_summary()
211 total_rand_reads / total_secs, total_rand_reads / total_secs / n_disk_path); in dump_summary()
/dports/multimedia/atomicparsley/atomicparsley-20210114.184825.1dbe1be/src/
H A Dutil.cpp536 char *APar_gmtime64(uint64_t total_secs, char *utc_time) { in APar_gmtime64() argument
545 int literal_days_into_year = ((total_secs % 31536000) / 86400) - in APar_gmtime64()
548 uint32_t literal_seconds_into_day = total_secs % 86400; in APar_gmtime64()
568 timeinfo.tm_wday = (((total_secs / 86400) - (offset_year / 4)) - 5) % 7; in APar_gmtime64()
584 char *APar_extract_UTC(uint64_t total_secs) { in APar_extract_UTC() argument
593 if (total_secs > MAXTIME_32) { in APar_extract_UTC()
594 return APar_gmtime64(total_secs, utc_time); in APar_extract_UTC()
596 if (total_secs < 2082844800) { in APar_extract_UTC()
597 return APar_gmtime64(total_secs, utc_time); // less than Unix epoch in APar_extract_UTC()
599 total_secs -= 2082844800; in APar_extract_UTC()
[all …]
H A Dutil.h91 char *APar_extract_UTC(uint64_t total_secs);
/dports/devel/py-pymtbl/pymtbl-0.5.0/examples/
H A Dpymtbl_search_random_table.py50 total_secs = b - a
54 locale.format_string('%f', total_secs, grouping=True),
55 locale.format_string('%d', count / total_secs, grouping=True)
H A Dpymtbl_make_random_table.py55 total_secs = b - a
59 locale.format_string('%f', total_secs, grouping=True),
60 locale.format_string('%d', total / total_secs, grouping=True)
H A Dpymtbl_make_random_table_2.py62 total_secs = b - a
66 locale.format_string('%f', total_secs, grouping=True),
67 locale.format_string('%d', count / total_secs, grouping=True)
/dports/security/snort3/snort3-3.1.19.0/src/utils/
H A Dstats.cc155 uint32_t total_secs = tmp; in timing_stats() local
156 if ( total_secs < 1 ) in timing_stats()
157 total_secs = 1; in timing_stats()
178 if ( uint64_t pps = (num_pkts / total_secs) ) in timing_stats()
181 if ( uint64_t mbps = 8 * num_byts / total_secs / 1024 / 1024 ) in timing_stats()
/dports/audio/ardour6/Ardour-6.8.0/libs/pbd/
H A Dconvert.cc235 int32_t total_secs = (hrs * 3600) + (mins * 60) + secs;
236 int32_t samples_remaining = (int) floor (samples - (total_secs * sample_rate));
255 int64_t total_secs = (hrs * 3600LL) + (mins * 60LL) + secs; in length2string() local
256 int64_t samples_remaining = (int64_t) floor (samples - (total_secs * sample_rate)); in length2string()
/dports/databases/py-mysql-connector-python/mysql-connector-python-8.0.27/src/
H A Dmysql_capi_conversion.c170 int days= 0, secs= 0 , micro_secs= 0, total_secs= 0; in pytomy_timedelta() local
189 total_secs= abs(days * 86400 + secs); in pytomy_timedelta()
202 total_secs-= 1; in pytomy_timedelta()
220 hours= total_secs / 3600; in pytomy_timedelta()
221 remainder= total_secs % 3600; in pytomy_timedelta()
/dports/math/primecount/primecount-7.2/src/
H A DLoadBalancerS2.cpp241 double total_secs = get_time() - time_; in remaining_secs() local
242 double secs = total_secs * (100 / percent) - total_secs; in remaining_secs()
/dports/audio/musicpc/mpc-0.33/src/
H A Dcommand.c265 int total_secs; in cmd_seek_through() local
325 total_secs = (hr * 3600) + (min * 60) + sec; in cmd_seek_through()
331 total_secs = strtol(arg, &test, 10); /* get the # of seconds */ in cmd_seek_through()
333 if (*test != '\0' || (rel == 1 && total_secs < 0)) in cmd_seek_through()
337 seekchange = total_secs; in cmd_seek_through()
456 int total_secs; in cmd_seek() local
516 total_secs = (hr * 3600) + (min * 60) + sec; in cmd_seek()
522 total_secs = strtol(arg, &test, 10); /* get the # of seconds */ in cmd_seek()
524 if (*test != '\0' || (rel == 0 && total_secs < 0)) in cmd_seek()
528 seekchange = total_secs; in cmd_seek()
/dports/lang/rust/rustc-1.58.1-src/library/core/src/
H A Dtime.rs1047 let mut total_secs: u64 = 0; localVariable
1051 total_secs =
1052 total_secs.checked_add(entry.secs).expect("overflow in iter::sum over durations");
1056 total_secs = total_secs
1063 total_secs = total_secs
1067 Duration { secs: total_secs, nanos: total_nanos as u32 }
/dports/multimedia/imagination/imagination-3.0/src/
H A Dsupport.c45 gchar *img_convert_seconds_to_time(gint total_secs) in img_convert_seconds_to_time() argument
49 h = total_secs / 3600; in img_convert_seconds_to_time()
50 m = (total_secs % 3600) / 60; in img_convert_seconds_to_time()
51 s = total_secs - (h * 3600) - (m * 60); in img_convert_seconds_to_time()
695 img->total_secs = 0; in img_set_total_slideshow_duration()
703 img->total_secs += entry->duration; in img_set_total_slideshow_duration()
706 img->total_secs += entry->speed; in img_set_total_slideshow_duration()
712 img->total_secs += img->final_transition.speed; in img_set_total_slideshow_duration()
715 time = img_convert_seconds_to_time(img->total_secs); in img_set_total_slideshow_duration()
/dports/net/gupnp-tools/gupnp-tools-0.10.2/src/av-cp/
H A Drenderer-controls.c442 guint total_secs; in on_position_scale_value_changed() local
447 total_secs = (guint) gtk_range_get_value (range); in on_position_scale_value_changed()
448 hours = total_secs / 3600; in on_position_scale_value_changed()
449 minutes = (total_secs / 60) - (hours * 60); in on_position_scale_value_changed()
450 seconds = total_secs - (hours * 3600) - (minutes * 60); in on_position_scale_value_changed()
/dports/graphics/graphviz/graphviz-2.44.1/cmd/tools/
H A Dtred.c285 double total_secs = 0; in process() local
300 total_secs += secs; in process()
306 fprintf(stderr, "Finished graph %s: %.02f secs.\n", agnameof(g), total_secs); in process()
/dports/x11/inputplug/inputplug-0.4.0/cargo-crates/x11rb-0.8.1/examples/
H A Dxclock_utc.rs303 let total_secs = SystemTime::now() in get_time() localVariable
307 let (second, total_minutes) = (total_secs % 60, total_secs / 60); in get_time()
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/x11rb-0.8.1/examples/
H A Dxclock_utc.rs303 let total_secs = SystemTime::now() in get_time() localVariable
307 let (second, total_minutes) = (total_secs % 60, total_secs / 60); in get_time()
/dports/sysutils/busybox/busybox-1.26.2/networking/
H A Dping.c375 unsigned total_secs; member
403 #define total_secs (G.total_secs ) macro
473 total_secs += PINGINTERVAL; in sendping_tail()
474 if (total_secs >= deadline) in sendping_tail()
/dports/audio/p5-Audio-MPD-Common/Audio-MPD-Common-2.003/t/
H A Dtime.t40 is( $time->total_secs, 45, 'total_secs() gives seconds total' );
/dports/security/snort/snort-2.9.18/src/
H A Dutil.c1112 uint32_t total_secs = 0, tmp = 0; in TimeStop() local
1126 tmp = total_secs = (uint32_t)difftime.tv_sec; in TimeStop()
1127 if ( total_secs < 1 ) total_secs = 1; in TimeStop()
1143 uint64_t n = (pc.total_from_daq / (total_secs / SECONDS_PER_DAY)); in TimeStop()
1149 uint64_t n = (pc.total_from_daq / (total_secs / SECONDS_PER_HOUR)); in TimeStop()
1155 uint64_t n = (pc.total_from_daq / (total_secs / SECONDS_PER_MIN)); in TimeStop()
1159 pps = (pc.total_from_daq / total_secs); in TimeStop()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/tools/
H A Dnocompile_driver.py303 total_secs = timings['results_processed'] - timings['started']
308 suite_name, timings['started'], timings['results_processed'], total_secs,
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/
H A Dnocompile_driver.py303 total_secs = timings['results_processed'] - timings['started']
308 suite_name, timings['started'], timings['results_processed'], total_secs,
/dports/multimedia/gstreamer1-plugins/gst-plugins-base-1.16.2/gst-libs/gst/audio/
H A Dgstaudiocdsrc.c1267 guint total_secs, num_audio_tracks; in gst_audio_cd_src_calculate_cddb_id() local
1271 total_secs = 0; in gst_audio_cd_src_calculate_cddb_id()
1296 total_secs += len_secs; in gst_audio_cd_src_calculate_cddb_id()
1314 "lengths = %u seconds (%02u:%02u)", t, t / 60, t % 60, total_secs, in gst_audio_cd_src_calculate_cddb_id()
1315 total_secs / 60, total_secs % 60); in gst_audio_cd_src_calculate_cddb_id()

123