Home
last modified time | relevance | path

Searched refs:secs (Results 201 – 225 of 21752) sorted by relevance

12345678910>>...871

/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/chrono-0.4.11/src/
H A Doldtime.rs117 Duration { secs: secs, nanos: nanos } in milliseconds()
125 Duration { secs: secs, nanos: nanos } in microseconds()
206 let mut secs = try_opt!(self.secs.checked_add(rhs.secs)); in checked_add() localVariable
210 secs = try_opt!(secs.checked_add(1)); in checked_add()
220 let mut secs = try_opt!(self.secs.checked_sub(rhs.secs)); in checked_sub() localVariable
300 let mut secs = self.secs + rhs.secs; in add() localVariable
306 Duration { secs: secs, nanos: nanos } in add()
314 let mut secs = self.secs - rhs.secs; in sub() localVariable
320 Duration { secs: secs, nanos: nanos } in sub()
340 let mut secs = self.secs / rhs as i64; in div() localVariable
[all …]
/dports/sysutils/flowgger/flowgger-0.2.10/cargo-crates/chrono-0.4.9/src/
H A Doldtime.rs116 Duration { secs: secs, nanos: nanos }
124 Duration { secs: secs, nanos: nanos }
205 let mut secs = try_opt!(self.secs.checked_add(rhs.secs));
209 secs = try_opt!(secs.checked_add(1));
219 let mut secs = try_opt!(self.secs.checked_sub(rhs.secs));
299 let mut secs = self.secs + rhs.secs;
305 Duration { secs: secs, nanos: nanos }
313 let mut secs = self.secs - rhs.secs;
319 Duration { secs: secs, nanos: nanos }
339 let mut secs = self.secs / rhs as i64;
[all …]
/dports/graphics/rx/rx-0.4.0/cargo-crates/chrono-0.4.10/src/
H A Doldtime.rs117 Duration { secs: secs, nanos: nanos } in milliseconds()
125 Duration { secs: secs, nanos: nanos } in microseconds()
206 let mut secs = try_opt!(self.secs.checked_add(rhs.secs)); in checked_add() localVariable
210 secs = try_opt!(secs.checked_add(1)); in checked_add()
220 let mut secs = try_opt!(self.secs.checked_sub(rhs.secs)); in checked_sub() localVariable
300 let mut secs = self.secs + rhs.secs; in add() localVariable
306 Duration { secs: secs, nanos: nanos } in add()
314 let mut secs = self.secs - rhs.secs; in sub() localVariable
320 Duration { secs: secs, nanos: nanos } in sub()
340 let mut secs = self.secs / rhs as i64; in div() localVariable
[all …]
/dports/benchmarks/iperf3/iperf-3.10.1/src/
H A Diperf_time.c45 time1->secs = (uint32_t) ts.tv_sec; in iperf_time_now()
61 time1->secs = tv.tv_sec; in iperf_time_now()
75 time1->secs += usecs / 1000000L; in iperf_time_add_usecs()
78 time1->secs += time1->usecs / 1000000L; in iperf_time_add_usecs()
105 if (time1->secs < time2->secs) in iperf_time_compare()
107 if (time1->secs > time2->secs) in iperf_time_compare()
132 diff->secs = 0; in iperf_time_diff()
137 diff->secs = time1->secs - time2->secs; in iperf_time_diff()
140 diff->secs -= 1; in iperf_time_diff()
145 diff->secs = time2->secs - time1->secs; in iperf_time_diff()
[all …]
/dports/multimedia/dvb-apps/dvb-apps-3d43b280298c/lib/libdvbsec/
H A Ddvbsec_cfg.c240 switch(secs[i].config_type) { in dvbsec_cfg_save()
257 if (secs[i].lof_lo_v) in dvbsec_cfg_save()
259 if (secs[i].lof_lo_h) in dvbsec_cfg_save()
261 if (secs[i].lof_lo_l) in dvbsec_cfg_save()
263 if (secs[i].lof_lo_r) in dvbsec_cfg_save()
265 if (secs[i].lof_hi_v) in dvbsec_cfg_save()
267 if (secs[i].lof_hi_h) in dvbsec_cfg_save()
269 if (secs[i].lof_hi_l) in dvbsec_cfg_save()
271 if (secs[i].lof_hi_r) in dvbsec_cfg_save()
276 if (secs[i].adv_cmd_lo_h[0]) in dvbsec_cfg_save()
[all …]
/dports/science/quantum-espresso/q-e-qe-6.7.0/XSpectra/examples/reference/
H A DCu_xspectra_lplus.out361 total cpu time spent 1 is 1.61 secs
362 total cpu time spent 3 is 1.61 secs
373 total cpu time spent 4 is 1.63 secs
377 total cpu time spent 1 is 1.63 secs
378 total cpu time spent 3 is 1.63 secs
389 total cpu time spent 4 is 1.65 secs
393 total cpu time spent 1 is 1.65 secs
394 total cpu time spent 3 is 1.65 secs
405 total cpu time spent 4 is 1.66 secs
409 total cpu time spent 1 is 1.66 secs
[all …]
/dports/devel/py-robotframework/robotframework-3.1.2/src/robot/utils/
H A Drobottime.py36 isecs = int(secs)
45 secs = converter(timestr)
46 if secs is not None:
47 return secs if round_to is None else roundup(secs, round_to)
161 secs = int_secs % 60
303 return roundup(secs, 3)
311 millis = (secs - int(secs)) * 1000
343 mins, secs = divmod(secs, 60)
349 mins, secs = divmod(secs, 60)
375 secs = int(timestamp[15:17])
[all …]
/dports/mail/spamassassin-devel/spamassassin-1ea352210/lib/Mail/SpamAssassin/
H A DTimeout.pm148 my $secs = $self->{secs};
154 if (defined $secs && $secs < 0) {
161 $secs = $dt if !defined $secs || $dt < $secs;
170 if (defined $secs) {
200 } elsif ($secs <= 0) {
214 my $isecs = int($secs);
215 $isecs++ if $secs > int($isecs); # ceiling
325 my $secs = $self->{end_time} - time;
326 if ($secs > 0) {
327 my $isecs = int($secs);
[all …]
/dports/mail/spamassassin/Mail-SpamAssassin-3.4.5/lib/Mail/SpamAssassin/
H A DTimeout.pm148 my $secs = $self->{secs};
154 if (defined $secs && $secs < 0) {
161 $secs = $dt if !defined $secs || $dt < $secs;
170 if (defined $secs) {
200 } elsif ($secs <= 0) {
214 my $isecs = int($secs);
215 $isecs++ if $secs > int($isecs); # ceiling
325 my $secs = $self->{end_time} - time;
326 if ($secs > 0) {
327 my $isecs = int($secs);
[all …]
/dports/shells/fish/fish-3.3.1/tests/checks/
H A Dtime.fish7 #CHECKERR: Executed in {{[\d,.\s]*}} {{millis|micros|secs}} {{\s*}}fish {{\s*}}external
8 …r time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{m…
9 …s time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{m…
17 #CHECKERR: Executed in {{[\d,.\s]*}} {{millis|micros|secs}} {{\s*}}fish {{\s*}}external
18 …r time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{m…
19 …s time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{m…
25 #CHECKERR: Executed in {{[\d,.\s]*}} {{millis|micros|secs}} {{\s*}}fish {{\s*}}external
26 …r time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{m…
27 …s time {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{millis|micros|secs}} {{[\d,.\s]*}} {{m…
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/nio/file/attribute/
H A DFileTime.java147 if (secs == Long.MIN_VALUE || secs == Long.MAX_VALUE) { in to()
148 return secs; in to()
151 long r = secs + nanos; in to()
176 long r = secs * 1000; in toMillis()
177 long ax = Math.abs(secs); in toMillis()
232 long secs = 0L; in toInstant() local
248 secs = value; in toInstant()
266 if (secs <= MIN_SECOND) in toInstant()
268 else if (secs >= MAX_SECOND) in toInstant()
353 if (secs != MAX_SECOND && secs != MIN_SECOND) { in compareTo()
[all …]
/dports/devel/directfb/DirectFB-1.4.17/gfxdrivers/sh772x/
H A DREADME.sh772242 Anti-aliased Text 3.020 secs ( 41.721 KChars/sec) [100%]
43 Anti-aliased Text (blend) 3.328 secs ( 10.817 KChars/sec) [100%]
44 Fill Rectangle 5.549 secs (* 69.681 MPixel/sec) [ 3%]
45 Fill Rectangle (blend) 11.873 secs (* 22.079 MPixel/sec) [ 1%]
46 Fill Rectangles [10] 9.384 secs (* 69.838 MPixel/sec) [ 0%]
47 Fill Rectangles [10] (blend) 14.836 secs (* 22.086 MPixel/sec) [ 0%]
48 Fill Triangles 3.024 secs (+ 50.929 MPixel/sec) [ 40%]
49 Fill Triangles (blend) 3.064 secs (+ 20.319 MPixel/sec) [ 8%]
50 Draw Rectangle 3.284 secs (* 6.942 KRects/sec) [ 26%]
51 Draw Rectangle (blend) 3.302 secs (* 6.268 KRects/sec) [ 25%]
[all …]
/dports/ftp/omi/omi/
H A Dbas.c17 time_format (int secs) in time_format() argument
22 days = secs / 86400; in time_format()
23 secs = secs % 86400; in time_format()
24 hours = secs / 3600; in time_format()
25 secs = secs % 3600; in time_format()
26 mins = secs / 60; in time_format()
27 secs = secs % 60; in time_format()
29 sprintf (buffer, "%ud %u:%02u:%02u", days, hours, mins, secs); in time_format()
31 sprintf (buffer, "%u:%02u:%02u", hours, mins, secs); in time_format()
/dports/devel/p5-Time-Object/Time-Object-1.00/
H A DObject.xs57 int secs;
160 secs = 0;
163 secs = ptm->tm_sec;
168 if (secs < 0) {
169 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
173 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY - 1);
177 secs -= SECS_PER_DAY * (secs/SECS_PER_DAY);
182 secs %= SECS_PER_DAY;
185 secs %= SECS_PER_HOUR;
187 secs %= 60;
[all …]
/dports/devel/9base/9base-6/lib9/
H A Dtm2sec.c42 long secs; in tm2sec() local
45 secs = 0; in tm2sec()
53 secs += d2m[0] * SEC2DAY; in tm2sec()
68 secs += yday * SEC2DAY; in tm2sec()
73 secs += tm->hour * SEC2HOUR; in tm2sec()
74 secs += tm->min * SEC2MIN; in tm2sec()
75 secs += tm->sec; in tm2sec()
103 secs -= ti->tzoff; in tm2sec()
107 if(secs < 0) in tm2sec()
108 secs = 0; in tm2sec()
[all …]
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/lib9/
H A Dtm2sec.c42 long secs; in tm2sec() local
45 secs = 0; in tm2sec()
53 secs += d2m[0] * SEC2DAY; in tm2sec()
68 secs += yday * SEC2DAY; in tm2sec()
73 secs += tm->hour * SEC2HOUR; in tm2sec()
74 secs += tm->min * SEC2MIN; in tm2sec()
75 secs += tm->sec; in tm2sec()
103 secs -= ti->tzoff; in tm2sec()
107 if(secs < 0) in tm2sec()
108 secs = 0; in tm2sec()
[all …]

12345678910>>...871