Searched refs:year_of_century (Results 1 – 2 of 2) sorted by relevance
| /linux/kernel/time/ |
| H A D | timeconv.c | 49 u32 u32tmp, day_of_century, year_of_century, day_of_year, month, day; in time64_to_tm() local 113 year_of_century = upper_32_bits(u64tmp); in time64_to_tm() 116 year = 100 * century + year_of_century; in time64_to_tm() 117 is_leap_year = year_of_century ? !(year_of_century % 4) : !(century % 4); in time64_to_tm()
|
| /linux/drivers/rtc/ |
| H A D | lib.c | 57 u32 u32tmp, udays, century, day_of_century, year_of_century, year, in rtc_time64_to_tm() local 116 year_of_century = upper_32_bits(u64tmp); in rtc_time64_to_tm() 119 year = 100 * century + year_of_century; in rtc_time64_to_tm() 120 is_leap_year = year_of_century != 0 ? in rtc_time64_to_tm() 121 year_of_century % 4 == 0 : century % 4 == 0; in rtc_time64_to_tm()
|