Home
last modified time | relevance | path

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

/freebsd/usr.sbin/fifolog/lib/
H A Dgetdate.y563 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 Dgetdate.y569 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/crypto/krb5/src/kadmin/cli/
H A Dgetdate.y565 static int DaysInMonth[12] = { in Convert() local
577 DaysInMonth[1] = Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) in Convert()
583 || Day < 1 || Day > DaysInMonth[(int)--Month]) in Convert()
587 Julian += DaysInMonth[i]; in Convert()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_parse_date.c690 signed char DaysInMonth[12] = { in Convert() local
704 DaysInMonth[1] = Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) in Convert()
709 || Day < 1 || Day > DaysInMonth[(int)--Month] in Convert()
717 Julian += DaysInMonth[i]; in Convert()
/freebsd/contrib/ntp/util/
H A Dtg2.c2404 int DaysInMonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; local
2432 ReturnValue += DaysInMonth [ MonthCounter - 1 ];