Home
last modified time | relevance | path

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

/external/rust/crates/chrono/src/naive/
Ddate.rs100 ymdf: DateImpl, // (year << 13) | of field
104 pub const MIN_DATE: NaiveDate = NaiveDate { ymdf: (MIN_YEAR << 13) | (1 << 4) | 0o07 /*FE*/ };
106 pub const MAX_DATE: NaiveDate = NaiveDate { ymdf: (MAX_YEAR << 13) | (365 << 4) | 0o17 /*F*/ };
141 Some(NaiveDate { ymdf: (year << 13) | (of as DateImpl) }) in from_of()
772 Of((self.ymdf & 0b1_1111_1111_1111) as u32) in of()
790 Some(NaiveDate { ymdf: (self.ymdf & !0b1_1111_1111_1111) | of as DateImpl }) in with_of()
1115 self.ymdf >> 13 in year()