Home
last modified time | relevance | path

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

/dports/devel/wasi-libc/wasi-libc-ad5133410f66b93a2381db5b542aad5e0964db96/libc-top-half/musl/src/time/
H A D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/lang/zig/zig-0.9.0/lib/libc/wasi/libc-top-half/musl/src/time/
H A D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/musl/src/time/
H A D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/lang/zig/zig-0.9.0/lib/libc/musl/src/time/
H A D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/wasi/libc-top-half/musl/src/time/
H A D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/devel/tinygo/tinygo-0.14.1/lib/wasi-libc/libc-top-half/musl/src/time/
H A D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/devel/emscripten/emscripten-2.0.3/system/lib/libc/musl/src/time/
H A D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
76 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
77 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
78 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/security/libretls/libretls-3.4.2/compat/
H A Dtimegm.c122 int remdays, remsecs, remyears; in __secs_to_tm() local
134 remsecs = secs % 86400; in __secs_to_tm()
135 if (remsecs < 0) { in __secs_to_tm()
136 remsecs += 86400; in __secs_to_tm()
184 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
185 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
186 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/security/libressl-static/libressl-3.3.5/crypto/compat/
H A Dtimegm.c122 int remdays, remsecs, remyears; in __secs_to_tm() local
134 remsecs = secs % 86400; in __secs_to_tm()
135 if (remsecs < 0) { in __secs_to_tm()
136 remsecs += 86400; in __secs_to_tm()
184 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
185 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
186 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/emulators/citra-qt5/citra-ac98458e0/externals/libressl/crypto/compat/
H A Dtimegm.c122 int remdays, remsecs, remyears; in __secs_to_tm() local
134 remsecs = secs % 86400; in __secs_to_tm()
135 if (remsecs < 0) { in __secs_to_tm()
136 remsecs += 86400; in __secs_to_tm()
184 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
185 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
186 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/emulators/citra/citra-ac98458e0/externals/libressl/crypto/compat/
H A Dtimegm.c122 int remdays, remsecs, remyears; in __secs_to_tm() local
134 remsecs = secs % 86400; in __secs_to_tm()
135 if (remsecs < 0) { in __secs_to_tm()
136 remsecs += 86400; in __secs_to_tm()
184 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
185 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
186 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/www/obhttpd/libressl-3.4.1/crypto/compat/
H A Dtimegm.c122 int remdays, remsecs, remyears; in __secs_to_tm() local
134 remsecs = secs % 86400; in __secs_to_tm()
135 if (remsecs < 0) { in __secs_to_tm()
136 remsecs += 86400; in __secs_to_tm()
184 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
185 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
186 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/security/libressl/libressl-3.4.3/crypto/compat/
H A Dtimegm.c122 int remdays, remsecs, remyears; in __secs_to_tm() local
134 remsecs = secs % 86400; in __secs_to_tm()
135 if (remsecs < 0) { in __secs_to_tm()
136 remsecs += 86400; in __secs_to_tm()
184 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
185 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
186 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/tracing-subscriber-0.3.3/src/fmt/time/
H A Ddatetime.rs274 let mut remsecs: i32 = (t % 86_400) as i32; in from() localVariable
275 if remsecs < 0i32 { in from()
276 remsecs += 86_400; in from()
325 hour: (remsecs / 3600) as u8, in from()
326 minute: (remsecs / 60 % 60) as u8, in from()
327 second: (remsecs % 60) as u8, in from()
/dports/lang/gleam/gleam-0.18.2/cargo-crates/tracing-subscriber-0.3.3/src/fmt/time/
H A Ddatetime.rs274 let mut remsecs: i32 = (t % 86_400) as i32; in from() localVariable
275 if remsecs < 0i32 { in from()
276 remsecs += 86_400; in from()
325 hour: (remsecs / 3600) as u8, in from()
326 minute: (remsecs / 60 % 60) as u8, in from()
327 second: (remsecs % 60) as u8, in from()
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/tracing-subscriber-0.3.3/src/fmt/time/
H A Ddatetime.rs274 let mut remsecs: i32 = (t % 86_400) as i32; in from() localVariable
275 if remsecs < 0i32 { in from()
276 remsecs += 86_400; in from()
325 hour: (remsecs / 3600) as u8, in from()
326 minute: (remsecs / 60 % 60) as u8, in from()
327 second: (remsecs % 60) as u8, in from()
/dports/net/krill/krill-0.9.4/cargo-crates/tracing-subscriber-0.2.25/src/fmt/time/
H A Ddatetime.rs79 let mut remsecs: i32 = (t % 86_400) as i32; in from() localVariable
80 if remsecs < 0i32 { in from()
81 remsecs += 86_400; in from()
130 hour: (remsecs / 3600) as u8, in from()
131 minute: (remsecs / 60 % 60) as u8, in from()
132 second: (remsecs % 60) as u8, in from()
/dports/misc/xd-rust/delan-xd-4bdbb191ed6d/cargo-crates/tracing-subscriber-0.2.15/src/fmt/time/
H A Ddatetime.rs79 let mut remsecs: i32 = (t % 86_400) as i32; in from() localVariable
80 if remsecs < 0i32 { in from()
81 remsecs += 86_400; in from()
130 hour: (remsecs / 3600) as u8, in from()
131 minute: (remsecs / 60 % 60) as u8, in from()
132 second: (remsecs % 60) as u8, in from()
/dports/lang/rust/rustc-1.58.1-src/vendor/tracing-subscriber/src/fmt/time/
H A Ddatetime.rs79 let mut remsecs: i32 = (t % 86_400) as i32; in from() localVariable
80 if remsecs < 0i32 { in from()
81 remsecs += 86_400; in from()
130 hour: (remsecs / 3600) as u8, in from()
131 minute: (remsecs / 60 % 60) as u8, in from()
132 second: (remsecs % 60) as u8, in from()
/dports/lang/rust/rustc-1.58.1-src/vendor/tracing-subscriber-0.2.16/src/fmt/time/
H A Ddatetime.rs79 let mut remsecs: i32 = (t % 86_400) as i32; in from() localVariable
80 if remsecs < 0i32 { in from()
81 remsecs += 86_400; in from()
130 hour: (remsecs / 3600) as u8, in from()
131 minute: (remsecs / 60 % 60) as u8, in from()
132 second: (remsecs % 60) as u8, in from()
/dports/mail/rspamd-devel/rspamd-93430bb/src/libutil/
H A Dutil.c2149 int remdays, remsecs, remyears; in rspamd_gmtime() local
2162 remsecs = secs % 86400; in rspamd_gmtime()
2164 if (remsecs < 0) { in rspamd_gmtime()
2165 remsecs += 86400; in rspamd_gmtime()
2230 dest->tm_hour = remsecs / 3600; in rspamd_gmtime()
2231 dest->tm_min = remsecs / 60 % 60; in rspamd_gmtime()
2232 dest->tm_sec = remsecs % 60; in rspamd_gmtime()
/dports/mail/rspamd/rspamd-3.1/src/libutil/
H A Dutil.c2150 int remdays, remsecs, remyears; in rspamd_gmtime() local
2163 remsecs = secs % 86400; in rspamd_gmtime()
2165 if (remsecs < 0) { in rspamd_gmtime()
2166 remsecs += 86400; in rspamd_gmtime()
2231 dest->tm_hour = remsecs / 3600; in rspamd_gmtime()
2232 dest->tm_min = remsecs / 60 % 60; in rspamd_gmtime()
2233 dest->tm_sec = remsecs % 60; in rspamd_gmtime()
/dports/games/golly/golly-3.3-src/gui-ios/Golly/
H A DPatternViewController.m835 double remsecs = fraction > 0.0 ? (elapsecs / fraction) - elapsecs : 999.0;
836 …e setText:[NSString stringWithFormat:@"Estimated time remaining (in secs): %d", int(remsecs+0.5)]];
/dports/print/texlive-tlmgr/texlive-20150523-extra/tlpkg/TeXLive/
H A DTLUtils.pm1248 my $remsecs = $passedtime;
1249 my $min = int($remsecs/60);
1255 my $sec = $remsecs % 60;
/dports/print/texlive-base/texlive-20150521-source/texk/tests/TeXLive/
H A DTLUtils.pm1255 my $remsecs = $passedtime;
1256 my $min = int($remsecs/60);
1262 my $sec = $remsecs % 60;