HomeSort by: relevance | last modified time | path
    Searched refs:Year (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/sys/arch/ia64/stand/ia64/ski/
time.c 59 int Year;
75 // The value at index 13 is for the whole year.
108 int Year;
110 ETime->Year += 1900;
115 if ( ETime->Year < 1998 || ETime->Year > 2099 ||
128 for (Year = 1970; Year != ETime->Year; ++Year) {
    [all...]
  /src/sys/arch/ia64/stand/efi/libefi/
time.c 64 // The value at index 13 is for the whole year.
97 int Year;
102 if ( ETime->Year < 1998 || ETime->Year > 2099 ||
117 for (Year = 1970; Year != ETime->Year; ++Year) {
118 UTime += (CumulativeDays[isleap(Year)][13] * SECSPERDAY);
122 // UTime should now be set to 00:00:00 on Jan 1 of the file's year
    [all...]
  /src/sys/arch/i386/stand/efiboot/
efigetsecs.c 38 r = (t.Year - 1970) * 365;
39 for (y = 1970; y < t.Year; y++) {
43 r += daytab[isleap(t.Year) ? 1 : 0][t.Month] + t.Day;
eficons.c 415 } while (t1.Year == t2.Year &&
  /src/sys/stand/efiboot/
efigetsecs.c 42 r = (t.Year - 1970) * 365;
43 for (y = 1970; y < t.Year; y++) {
47 r += daytab[isleap(t.Year) ? 1 : 0][t.Month] + t.Day;
  /src/external/bsd/libarchive/dist/libarchive/
archive_parse_date.c 77 time_t Year;
84 * seconds, month/year are counted in months. */
200 * Year/month/day in various combinations.
215 gds->Year = gds->tokenp[0].value;
224 gds->Year = gds->tokenp[4].value;
229 gds->Year = gds->tokenp[4].value;
256 gds->Year = gds->tokenp[0].value;
273 gds->Year = gds->tokenp[0].value;
280 gds->Year = gds->tokenp[4].value;
296 gds->Year = gds->tokenp[3].value
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
check_y2k.c 107 #define GoodLeap(Year) (((Year)%4 || (!((Year)%100) && (Year)%400)) ? 0 : 13 )
112 Days ( int Year ) /* return number of days since year "0" */
116 Return = Year * 365; /* first aproximation to the value */
117 if ( Year >= 1 )
120 Return += (Year+3) / 4; /* add in (too many) leap days */
121 Return -= (Year-1) / 100; /* reduce by (too many) centurys *
148 int year; local
329 int year; member in struct:ParseTime
    [all...]
refclock_ripencc.c 356 unsigned char *date, unsigned char *month, short *year,
385 unsigned char *Day, unsigned char *Month, unsigned short *Year,
456 * Tables to compute the ddd of year form icky dd/mm timecode. Viva la
1472 unsigned day, month, year; /* data derived from received timecode */ local
1507 year = bGetShort(&buf[16]);
1513 day, month, year, hour, minute, second, trackstat, utcflags);
1544 pp->year = year;
1548 if (pp->year % 4) { /* XXX: use is_leapyear() ? */
1590 unsigned day, month, year; /* data derived from received timecode * local
4479 year, local
    [all...]
  /src/external/bsd/ntp/dist/util/
tg2.c 33 * string yydddhhmmss, where yy is the year of century, ddd the day of
34 * year, hh the hour of day and mm the minute of hour. For instance,
185 * - Changed date specification to more conventional year, month, and day of month
186 * (rather than day of year).
343 {COEF, 1}, /* 4 1 year units */
390 {COEF, 1}, /* 51 10 year tens */
502 int ConvertMonthDayToDayOfYear (int, int, int); /* Calc day of year from year month & day */
524 int IrigIncludeYear = FALSE; /* Whether to send year in first control functions area, between P5 and P6. */
580 int Year;
    [all...]
  /src/lib/libutil/
parsedate.y 78 int yyHaveFullYear; /* if true, year is not abbreviated. */
88 time_t yyMonth; /* Month of year [1-12] */
90 time_t yyYear; /* Year, see also yyHaveFullYear */
528 { "year", tMONTH_UNIT, 12 },
758 * Adjust year from a value that might be abbreviated, to a full value.
760 * Input Year is either:
762 * - A number from 0 to 68, which means a year from 2000 to 2068,
763 * - A number from 69 to 99, which means a year from 1969 to 1999, or
764 * - The actual year (>=100).
765 * Returns the full year
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
efidef.h 82 UINT16 Year; // 1998 - 20XX
  /src/external/historical/nawk/dist/testdir/
funstack.awk 137 /^ *year *= *\"/ { do_year(); next }
175 Year = ""
328 Year = get_value($0)
665 label = Volume "(" Number "):" Month ":" Year
970 return ("Volume " wrap(Volume) ", Number " wrap(Number) ", " wrap(Month) ", " wrap(Year))
  /src/sbin/efi/
certs.c 136 uint16_t Year; // 1900 - 9999
162 et->Year,
  /src/sys/external/bsd/acpica/dist/include/
acbuffer.h 83 UINT16 Year;
  /src/sys/external/bsd/gnu-efi/dist/lib/
print.c 1459 UINTN Hour, Year;
1473 Year = Time->Year % 100;
1479 Year,
  /src/sys/external/bsd/acpica/dist/include/platform/
acefiex.h 99 UINT16 Year; /* 1998 - 20XX */
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
date.d 66 Represents the 12 months of the Gregorian year (January is 1).
196 year = The year portion of the date.
203 this(int year, int month, int day, int hour = 0, int minute = 0, int second = 0) @safe pure
205 _date = Date(year, month, day);
548 Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive
551 @property short year() const @safe pure nothrow @nogc
553 return _date.year;
558 assert(Date.init.year == 1);
559 assert(Date(1999, 7, 6).year == 1999)
    [all...]
systime.d 490 be 100% accurate due to DST (one hour of the year doesn't exist and another
954 Year of the Gregorian Calendar. Positive numbers are A.D. Non-positive
957 @property short year() @safe const nothrow scope
959 return (cast(Date) this).year;
967 assert(sysTime.year == expected, format("Value given: %s", sysTime));
974 foreach (year; chain(testYearsBC, testYearsAD))
980 auto dt = DateTime(Date(year, md.month, md.day), tod);
984 test(SysTime(dt, fs, tz), year);
992 assert(cst.year == 1999);
993 assert(ist.year == 1999)
    [all...]
  /src/external/gpl2/gettext/dist/build-aux/
texinfo.tex 1744 % Produces Day Month Year style of output.
1749 \space\number\year}
1751 % Use this if you want the Month Day, Year style of output.
1755 %\space\number\day, \number\year}
  /src/external/gpl2/diffutils/dist/config/
texinfo.tex 1791 % This produces Day Month Year style of output.
1802 \space\number\year}
  /src/external/gpl2/gmake/dist/config/
texinfo.tex 2369 % This produces Day Month Year style of output.
2380 \space\number\year}
  /src/external/gpl2/grep/dist/doc/
texinfo.tex 1713 % This produces Day Month Year style of output.
1724 \space\number\year}
  /src/external/gpl2/groff/dist/doc/
texinfo.tex 2275 % This produces Day Month Year style of output.
2286 \space\number\year}
  /src/external/gpl2/texinfo/dist/doc/
texinfo.tex 2275 % This produces Day Month Year style of output.
2286 \space\number\year}
  /src/external/bsd/am-utils/dist/doc/
texinfo.tex 3469 % This produces Day Month Year style of output.
3480 \space\number\year}

Completed in 97 milliseconds

1 2