Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/rtc/
H A Dmod.rs67 pub month: i32, field
101 || self.month >= 12 in valid()
102 || self.month < 0 in valid()
116 let month = self.month as usize; in month_days() localVariable
117 let mut days = days_in_month[month]; in month_days()
119 if month == 1 && self.is_leap_year() { in month_days()
137 self.month + 1 in month_real()
145 (val.month + 1) as u32, in from()
/DragonOS/kernel/src/arch/x86_64/driver/
H A Drtc.rs258 res.month = dev.read_cmos(CMOSTimeSelector::Month as u8) as i32; in read_time()
280 res.month = (res.month & 0xf) + (res.month >> 4) * 10; in read_time()
289 res.month -= 1; in read_time()