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

Lines Matching defs:day

250   /* Relative year, month, day, hour, minutes, seconds, and nanoseconds.  */
253 long int day;
287 /* Gregorian year, month, day, hour, minutes, seconds, and nanoseconds. */
290 long int day;
295 /* Relative year, month, day, hour, minutes, seconds, and nanoseconds. */
693 "item", "time", "local_zone", "zone", "day", "date", "rel", "relunit",
1776 pc->rel.day += (yyvsp[(2) - (2)].rel).day;
1833 pc->day = (yyvsp[(3) - (3)].textintval).value;
1849 pc->day = (yyvsp[(5) - (5)].textintval).value;
1854 pc->day = (yyvsp[(3) - (5)].textintval).value;
1866 pc->day = -(yyvsp[(3) - (3)].textintval).value;
1874 pc->day = (yyvsp[(1) - (3)].textintval).value;
1886 pc->day = -(yyvsp[(2) - (3)].textintval).value;
1896 pc->day = (yyvsp[(2) - (2)].textintval).value;
1904 pc->day = (yyvsp[(2) - (4)].textintval).value;
1912 pc->day = (yyvsp[(1) - (2)].textintval).value;
1920 pc->day = (yyvsp[(1) - (3)].textintval).value;
1933 pc->rel.day -= (yyvsp[(1) - (2)].rel).day;
1946 pc->rel.day += (yyvsp[(1) - (1)].rel).day;
1984 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).day = (yyvsp[(1) - (2)].intval) * (yyvsp[(2) - (2)].intval); }
1989 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).day = (yyvsp[(1) - (2)].textintval).value * (yyvsp[(2) - (2)].intval); }
1994 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).day = (yyvsp[(1) - (1)].intval); }
2064 { (yyval.rel) = RELATIVE_TIME_0; (yyval.rel).day = (yyvsp[(1) - (2)].textintval).value * (yyvsp[(2) - (2)].intval); }
2103 pc->day = (yyvsp[(1) - (1)].textintval).value % 100;
2629 Take care to avoid int overflow in leap day calculations. */
3009 pc.day = tmp->tm_mday;
3098 tm.tm_mday = pc.day;
3192 if (pc.rel.year | pc.rel.month | pc.rel.day)
3196 int day = tm.tm_mday + pc.rel.day;
3199 | ((day < tm.tm_mday) ^ (pc.rel.day < 0)))
3203 tm.tm_mday = day;