Home | History | Annotate | Download | only in tzcode

Lines Matching refs:idays

1423 	register int			idays;	/* unsigned would be so 2003 */
1489 idays = tdays;
1493 --idays;
1497 ++idays;
1499 while (idays < 0) {
1502 idays += year_lengths[isleap(y)];
1504 while (idays >= year_lengths[isleap(y)]) {
1505 idays -= year_lengths[isleap(y)];
1512 tmp->tm_yday = idays;
1521 idays;
1534 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
1535 idays -= ip[tmp->tm_mon];
1536 tmp->tm_mday = (int) (idays + 1);