Lines Matching +full:4 +full:th
66 tm->tm_wday = (days + 4) % 7; in rtc_time64_to_tm()
76 * March 1st 0-th day of the year; in rtc_time64_to_tm()
80 * January 1st 306-th day of the year; (Important!) in rtc_time64_to_tm()
82 * February 28th 364-th day of the year; in rtc_time64_to_tm()
83 * February 29th 365-th day of the year (if it exists). in rtc_time64_to_tm()
98 u32tmp = 4 * udays + 3; in rtc_time64_to_tm()
100 day_of_century = u32tmp % 146097 / 4; in rtc_time64_to_tm()
102 u32tmp = 4 * day_of_century + 3; in rtc_time64_to_tm()
105 day_of_year = lower_32_bits(u64tmp) / 2939745 / 4; in rtc_time64_to_tm()
109 year_of_century % 4 == 0 : century % 4 == 0; in rtc_time64_to_tm()
116 * Recall that January 01 is the 306-th day of the year in the in rtc_time64_to_tm()