HomeSort by: relevance | last modified time | path
    Searched defs:years (Results 1 - 3 of 3) sorted by relevancy

  /src/usr.bin/quota/
printquota.c 102 time_t years, months, weeks, days, hours, minutes; local in function:timeprt
112 years = (seconds + YEAR / 2) / YEAR;
116 if (years >= 2) {
117 (void)snprintf(buf, len, "%" PRId64 "years", years);
  /src/lib/libc/time/
zdump.c 675 intmax_t myy, seconds, years; local in function:yeartot
686 years = diff400 * 400;
689 years = 1;
691 myy += years;
702 years = diff400 * 400;
705 years = 1;
707 myy -= years;
localtime.c 1176 ** years.
1177 ** In non-leap years, or if the day number is 59 or less, just
1709 register time_t years; local in function:localsub
1718 years = (time_t)(seconds / SECSPERREPEAT
1720 seconds = (time_t)(years * AVGSECSPERYEAR);
1721 years += YEARSPERREPEAT;
1737 result->tm_year, years)
1739 result->tm_year, years))
1746 newy -= years;
1747 else newy += years;
    [all...]

Completed in 14 milliseconds