Home
last modified time | relevance | path

Searched refs:days_in_month (Results 1 – 5 of 5) sorted by relevance

/linux-2.4.37.9/arch/ppc/kernel/
Dtime.c361 #define days_in_month(a) (month_days[(a) - 1]) macro
387 days_in_month(FEBRUARY) = 29; in to_tm()
388 for (i = 1; day >= days_in_month(i); i++) in to_tm()
389 day -= days_in_month(i); in to_tm()
390 days_in_month(FEBRUARY) = 28; in to_tm()
/linux-2.4.37.9/arch/mips64/kernel/
Dtime.c719 #define days_in_month(m) (month_days[(m) - 1]) macro
745 days_in_month(FEBRUARY) = 29; in to_tm()
746 for (i = 1; day >= days_in_month(i); i++) in to_tm()
747 day -= days_in_month(i); in to_tm()
748 days_in_month(FEBRUARY) = 28; in to_tm()
/linux-2.4.37.9/arch/mips/kernel/
Dtime.c719 #define days_in_month(m) (month_days[(m) - 1]) macro
745 days_in_month(FEBRUARY) = 29; in to_tm()
746 for (i = 1; day >= days_in_month(i); i++) in to_tm()
747 day -= days_in_month(i); in to_tm()
748 days_in_month(FEBRUARY) = 28; in to_tm()
/linux-2.4.37.9/arch/ppc64/kernel/
Dtime.c656 #define days_in_month(a) (month_days[(a) - 1]) macro
725 days_in_month(FEBRUARY) = 29; in to_tm()
726 for (i = 1; day >= days_in_month(i); i++) in to_tm()
727 day -= days_in_month(i); in to_tm()
728 days_in_month(FEBRUARY) = 28; in to_tm()
/linux-2.4.37.9/arch/cris/drivers/
Dpcf8563.c47 static const unsigned char days_in_month[] = variable
265 (tm.tm_mday > days_in_month[tm.tm_mon] + leap) || in pcf8563_ioctl()