• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/gnutar-453/gnutar/lib/

Lines Matching defs:year

250   /* Relative year, month, day, hour, minutes, seconds, and nanoseconds.  */
251 long int year;
287 /* Gregorian year, month, day, hour, minutes, seconds, and nanoseconds. */
288 textint year;
295 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
1778 pc->rel.year += (yyvsp[(2) - (2)].rel).year;
1847 pc->year = (yyvsp[(1) - (5)].textintval);
1855 pc->year = (yyvsp[(5) - (5)].textintval);
1864 pc->year = (yyvsp[(1) - (3)].textintval);
1876 pc->year.value = -(yyvsp[(3) - (3)].textintval).value;
1877 pc->year.digits = (yyvsp[(3) - (3)].textintval).digits;
1887 pc->year.value = -(yyvsp[(3) - (3)].textintval).value;
1888 pc->year.digits = (yyvsp[(3) - (3)].textintval).digits;
1905 pc->year = (yyvsp[(4) - (4)].textintval);
1922 pc->year = (yyvsp[(3) - (3)].textintval);
1935 pc->rel.year -= (yyvsp[(1) - (2)].rel).year;
1948 pc->rel.year += (yyvsp[(1) - (1)].rel).year;
1954 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).year = (yyvsp[(1) - (2)].intval); }
1959 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).year = (yyvsp[(1) - (2)].textintval).value; }
1964 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).year = 1; }
2054 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).year = (yyvsp[(1) - (2)].textintval).value; }
2095 if (pc->dates_seen && ! pc->year.digits
2097 pc->year = (yyvsp[(1) - (1)].textintval);
2105 pc->year.value = (yyvsp[(1) - (1)].textintval).value / 10000;
2106 pc->year.digits = (yyvsp[(1) - (1)].textintval).digits - 4;
2585 long int year = textyear.value;
2587 if (year < 0)
2588 year = -year;
2593 year += year < 69 ? 2000 : 1900;
2595 return year;
2628 /* Compute intervening leap days correctly even if year is negative.
3005 pc.year.value = tmp->tm_year;
3006 pc.year.value += TM_YEAR_BASE;
3007 pc.year.digits = 0;
3096 tm.tm_year = to_year (pc.year) - TM_YEAR_BASE;
3192 if (pc.rel.year | pc.rel.month | pc.rel.day)
3194 int year = tm.tm_year + pc.rel.year;
3197 if (((year < tm.tm_year) ^ (pc.rel.year < 0))
3201 tm.tm_year = year;