Searched refs:is_leap_year (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dstrptime.c165 is_leap_year (int year) function
180 ret = (ret + (is_leap_year (year) ? 366 : 365)) % 7;
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A Dder_date.c42 int is_leap_year = year % 4 == 0 && (year % 100 != 0 || year % 400 == 0) ? 1 : 0; local
44 || (month == 2 && day > mdays[month] - mdays[month - 1] + is_leap_year)
60 day += is_leap_year;
/macosx-10.10.1/Security-57031.1.35/Security/utilities/utilities/
H A Dder_date.c42 int is_leap_year = year % 4 == 0 && (year % 100 != 0 || year % 400 == 0) ? 1 : 0; local
44 || (month == 2 && day > mdays[month] - mdays[month - 1] + is_leap_year)
60 day += is_leap_year;
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A DSecCertificate.c1970 int is_leap_year = year % 4 == 0 && (year % 100 != 0 || year % 400 == 0) ? 1 : 0; local
1972 || (month == 2 && day > mdays[month] - mdays[month - 1] + is_leap_year)
1986 day += is_leap_year;

Completed in 184 milliseconds