Lines Matching defs:idays
1934 int_fast32_t idays, rem, dayoff, dayrem;
1973 /* idays = (tdays + dayoff) mod DAYSPERREPEAT, sans overflow. */
1974 idays = (int)(tdays % DAYSPERREPEAT);
1975 idays += (dayoff % DAYSPERREPEAT + 2 * DAYSPERREPEAT);
1976 idays %= DAYSPERREPEAT;
1978 while (year_lengths[isleap(y)] <= idays) {
1979 int_fast32_t tdelta = idays / DAYSPERLYEAR;
1985 idays -= ydelta * DAYSPERNYEAR;
1986 idays -= leapdays;
2007 tmp->tm_yday = (int)idays;
2016 + idays);
2030 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
2031 idays -= ip[tmp->tm_mon];
2032 tmp->tm_mday = (int)(idays + 1);