Home
last modified time | relevance | path

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

/php-src/ext/date/lib/
H A Ddow.c162 timelib_sll daynr = timelib_daynr_from_weeknr(iy, iw, id) + 1; in timelib_date_from_isodate() local
171 while (daynr <= 0) { 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()
187 while (daynr > table[*m]) { in timelib_date_from_isodate()
188 daynr -= table[*m]; in timelib_date_from_isodate()
192 *d = daynr; in timelib_date_from_isodate()

Completed in 6 milliseconds