Lines Matching full:idays
1615 register int idays; /* unsigned would be so 2003 */
1674 idays = tdays;
1678 --idays;
1682 ++idays;
1684 while (idays < 0) {
1687 idays += year_lengths[isleap(y)];
1689 while (idays >= year_lengths[isleap(y)]) {
1690 idays -= year_lengths[isleap(y)];
1697 tmp->tm_yday = idays;
1706 idays;
1719 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
1720 idays -= ip[tmp->tm_mon];
1721 tmp->tm_mday = (int) (idays + 1);