Lines Matching refs:idays
1439 register int idays; /* unsigned would be so 2003 */
1509 idays = tdays;
1513 --idays;
1517 ++idays;
1519 while (idays < 0) {
1522 idays += year_lengths[isleap(y)];
1524 while (idays >= year_lengths[isleap(y)]) {
1525 idays -= year_lengths[isleap(y)];
1532 tmp->tm_yday = idays;
1541 idays;
1554 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
1555 idays -= ip[tmp->tm_mon];
1556 tmp->tm_mday = (int) (idays + 1);