Home
last modified time | relevance | path

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

/PHP-7.4/ext/date/lib/
H A Ddow.c164 bool is_leap_year; in timelib_date_from_isodate() local
168 is_leap_year = timelib_is_leap(*y); in timelib_date_from_isodate()
173 daynr += (is_leap_year = timelib_is_leap(*y)) ? 366 : 365; in timelib_date_from_isodate()
177 while (daynr > (is_leap_year ? 366 : 365)) { in timelib_date_from_isodate()
178 daynr -= is_leap_year ? 366 : 365; in timelib_date_from_isodate()
180 is_leap_year = timelib_is_leap(*y); in timelib_date_from_isodate()
183 table = is_leap_year ? ml_table_leap : ml_table_common; in timelib_date_from_isodate()

Completed in 11 milliseconds