Home | History | Annotate | Download | only in tzcode

Lines Matching refs:idays

1592 	register int			idays;	/* unsigned would be so 2003 */
1651 idays = tdays;
1655 --idays;
1659 ++idays;
1661 while (idays < 0) {
1664 idays += year_lengths[isleap(y)];
1666 while (idays >= year_lengths[isleap(y)]) {
1667 idays -= year_lengths[isleap(y)];
1674 tmp->tm_yday = idays;
1683 idays;
1696 for (tmp->tm_mon = 0; idays >= ip[tmp->tm_mon]; ++(tmp->tm_mon))
1697 idays -= ip[tmp->tm_mon];
1698 tmp->tm_mday = (int) (idays + 1);