Lines Matching refs:idays
1719 int_fast32_t idays, rem, dayoff, dayrem;
1758 /* idays = (tdays + dayoff) mod DAYSPERREPEAT, sans overflow. */
1759 idays = tdays % DAYSPERREPEAT;
1760 idays += dayoff % DAYSPERREPEAT + 2 * DAYSPERREPEAT;
1761 idays %= DAYSPERREPEAT;
1763 while (year_lengths[isleap(y)] <= idays) {
1764 int tdelta = idays / DAYSPERLYEAR;
1770 idays -= ydelta * DAYSPERNYEAR;
1771 idays -= leapdays;
1792 tmp->tm_yday = idays;
1801 + idays);
1815 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
1816 idays -= ip[tmp->tm_mon];
1817 tmp->tm_mday = idays + 1;