Lines Matching defs:idays
1414 int idays; /* unsigned would be so 2003 */
1479 idays = tdays;
1483 --idays;
1487 ++idays;
1489 while (idays < 0) {
1492 idays += year_lengths[isleap(y)];
1494 while (idays >= year_lengths[isleap(y)]) {
1495 idays -= year_lengths[isleap(y)];
1502 tmp->tm_yday = idays;
1511 idays;
1524 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
1525 idays -= ip[tmp->tm_mon];
1526 tmp->tm_mday = (int) (idays + 1);