Lines Matching defs:idays
1856 int_fast32_t idays, rem, dayoff, dayrem;
1895 /* idays = (tdays + dayoff) mod DAYSPERREPEAT, sans overflow. */
1896 idays = tdays % DAYSPERREPEAT;
1897 idays += dayoff % DAYSPERREPEAT + 2 * DAYSPERREPEAT;
1898 idays %= DAYSPERREPEAT;
1900 while (year_lengths[isleap(y)] <= idays) {
1901 int tdelta = idays / DAYSPERLYEAR;
1907 idays -= ydelta * DAYSPERNYEAR;
1908 idays -= leapdays;
1929 tmp->tm_yday = idays;
1938 + idays);
1952 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
1953 idays -= ip[tmp->tm_mon];
1954 tmp->tm_mday = idays + 1;