Home
last modified time | relevance | path

Searched refs:LEAPOCH (Results 1 – 6 of 6) sorted by relevance

/third_party/musl/porting/uniproton/kernel/src/time/
D__secs_to_tm.c5 #define LEAPOCH (946684800LL + 86400*(31+29)) macro
24 secs = t - LEAPOCH; in __secs_to_tm()
/third_party/musl/src/time/
D__secs_to_tm.c5 #define LEAPOCH (946684800LL + 86400*(31+29)) macro
24 secs = t - LEAPOCH; in __secs_to_tm()
/third_party/musl/porting/liteos_m/kernel/src/time/
D__secs_to_tm.c5 #define LEAPOCH (946684800LL + 86400*(31+29)) macro
24 secs = t - LEAPOCH; in __secs_to_tm()
/third_party/musl/porting/liteos_a/kernel/src/time/
D__secs_to_tm.c5 #define LEAPOCH (946684800LL + 86400*(31+29)) macro
24 secs = t - LEAPOCH; in __secs_to_tm()
/third_party/rust/crates/tracing/tracing-subscriber/src/fmt/time/
Ddatetime.rs266 const LEAPOCH: i64 = 946_684_800 + 86400 * (31 + 29); in from() constant
273 let mut days: i64 = (t / 86_400) - (LEAPOCH / 86_400); in from()
/third_party/rust/crates/humantime/src/
Ddate.rs264 const LEAPOCH: i64 = 11017; in fmt() constant
269 let days = (secs_since_epoch / 86400) as i64 - LEAPOCH; in fmt()