Lines Matching defs:month
28 * The number of days in the month.
30 int rtc_month_days(unsigned int month, unsigned int year)
32 return rtc_days_in_month[month] + (is_leap_year(year) && month == 1);
39 int rtc_year_days(unsigned int day, unsigned int month, unsigned int year)
41 return rtc_ydays[is_leap_year(year)][month] + day - 1;
59 day_of_year, month, day;
71 * (fictitious) calendar where the year starts in March, month = 2
72 * (*), and finishes in February, month = 13. This calendar is
112 month = u32tmp >> 16;
123 month = is_Jan_or_Feb ? month - 12 : month;
131 tm->tm_mon = (int) month;