Lines Matching defs:idays
2494 int_fast32_t idays, rem, dayoff, dayrem;
2533 /* idays = (tdays + dayoff) mod DAYSPERREPEAT, sans overflow. */
2534 idays = (int)(tdays % DAYSPERREPEAT);
2535 idays += (dayoff % DAYSPERREPEAT + 2 * DAYSPERREPEAT);
2536 idays %= DAYSPERREPEAT;
2538 while (year_lengths[isleap(y)] <= idays) {
2539 int_fast32_t tdelta = idays / DAYSPERLYEAR;
2545 idays -= ydelta * DAYSPERNYEAR;
2546 idays -= leapdays;
2567 tmp->tm_yday = (int)idays;
2576 + idays);
2590 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
2591 idays -= ip[tmp->tm_mon];
2592 tmp->tm_mday = (int)(idays + 1);