Lines Matching +full:4 +full:th
73 result->tm_wday = (4 + days) % 7; in time64_to_tm()
85 * March 1st 0-th day of the year; in time64_to_tm()
89 * January 1st 306-th day of the year; (Important!) in time64_to_tm()
91 * February 28th 364-th day of the year; in time64_to_tm()
92 * February 29th 365-th day of the year (if it exists). in time64_to_tm()
107 u64tmp = 4 * udays + 3; in time64_to_tm()
109 day_of_century = (u32) (u64tmp / 4); in time64_to_tm()
111 u32tmp = 4 * day_of_century + 3; in time64_to_tm()
114 day_of_year = lower_32_bits(u64tmp) / 2939745 / 4; in time64_to_tm()
117 is_leap_year = year_of_century ? !(year_of_century % 4) : !(century % 4); in time64_to_tm()
124 * Recall that January 1st is the 306-th day of the year in the in time64_to_tm()