Searched refs:DaysInMonth (Results 1 – 4 of 4) sorted by relevance
/freebsd/usr.sbin/fifolog/lib/ |
H A D | getdate.y | 563 static int DaysInMonth[12] = { in Convert() local 577 DaysInMonth[1] = Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) in Convert() 584 || Day < 1 || Day > DaysInMonth[(int)--Month]) in Convert() 594 Julian += DaysInMonth[i]; in Convert()
|
/freebsd/usr.bin/find/ |
H A D | getdate.y | 569 static int DaysInMonth[12] = { in Convert() local 582 DaysInMonth[1] = Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) in Convert() 589 || Day < 1 || Day > DaysInMonth[(int)--Month]) in Convert() 593 Julian += DaysInMonth[i]; in Convert()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_getdate.c | 691 signed char DaysInMonth[12] = { in Convert() 705 DaysInMonth[1] = Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) in Convert() 712 || Day < 1 || Day > DaysInMonth[(int)--Month] in Convert() 720 Julian += DaysInMonth[i]; in Convert() 695 signed char DaysInMonth[12] = { Convert() local
|
/freebsd/contrib/ntp/util/ |
H A D | tg2.c | 2404 int DaysInMonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; local 2432 ReturnValue += DaysInMonth [ MonthCounter - 1 ];
|