Searched refs:day (Results 126 - 150 of 190) sorted by relevance

12345678

/freebsd-current/contrib/ntp/libparse/
H A Dclk_meinberg.c74 * <dd>,<mm>,<yy> = day, month, year(2 digits!!)
75 * <w> = day of week (sunday= 0)
97 * <dd>,<mm>,<yy> = day, month, year(2 digits!!)
98 * <w> = day of week (sunday= 0)
126 * <dd>,<mm>,<yy> = day, month, year(2 digits!!)
127 * <w> = day of week (sunday= 0)
302 if (Stoi(&buffer[format->field_offsets[O_DAY].offset], &clock_time->day,
482 if (Stoi(&buffer[format->field_offsets[O_DAY].offset], &clock_time->day,
/freebsd-current/sys/dev/iicbus/rtc/
H A Dds1307.c492 bct.day = data[DS1307_DATE] & DS1307_DATE_MASK;
537 data[DS1307_DATE] = bct.day;
H A Dds3231.c514 bct.day = data[DS3231_DATE] & DS3231_DATE_MASK;
567 data[DS3231_DATE] = bct.day;
/freebsd-current/contrib/netbsd-tests/dev/clock_subr/
H A Dt_clock_subr.c293 CHECK_FIELD(day);
/freebsd-current/contrib/ntp/include/
H A Dparse.h304 long day; member in struct:clocktime
/freebsd-current/contrib/googletest/googletest/test/
H A Dgtest_xml_output_unittest.py289 day=int(match.group(3)),
/freebsd-current/sys/fs/udf/
H A Decma167-udf.h112 uint8_t day; member in struct:timestamp
/freebsd-current/sys/dev/hpt27xx/
H A Dosm.h122 HPT_U32 day:5; /* 1 - 31 */ member in struct:_TIME_RECORD
/freebsd-current/sys/dev/hptmv/
H A Darray.h44 UINT day:5; /* 1 - 31 */ member in struct:_TIME_RECORD
H A Dvdevice.h279 UINT day:5; /* 1 - 31 */ member in struct:_TIME_RECORD
/freebsd-current/sys/dev/hptnr/
H A Dosm.h120 HPT_U32 day:5; /* 1 - 31 */ member in struct:_TIME_RECORD
/freebsd-current/sys/dev/hptrr/
H A Dosm.h90 HPT_U32 day:5; /* 1 - 31 */ member in struct:_TIME_RECORD
/freebsd-current/lib/libbe/
H A Dbe.c592 int day, hour, minute, month, second, serial, year; local
598 if (sscanf(snap, "%d-%d-%d-%d:%d:%d-%d", &year, &month, &day, &hour,
602 (day >= 1 && day <= 31) && (hour >= 0 && hour <= 23) &&
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_arbiter.c42 * ddd = day of year
347 &syncchar, &pp->year, &pp->day, &pp->hour,
H A Drefclock_as2201.c28 * day of year, hh:mm:ss = second of day and mmm = millisecond of
302 &pp->day, &pp->hour, &pp->minute, &pp->second, &pp->nsec)
H A Drefclock_dumbclock.c53 * worse than this number of seconds away, assume the next day and retry.
195 int hours; /* hour-of-day */
247 * means we have to figure out what day it is. Easier said
271 * year/month/day wrong.
299 pp->day = ymd2yd (adjyear, adjmon, gmtp->tm_mday);
H A Drefclock_ripencc.c95 #define UTCF_LEAP_PNDG (unsigned char) (1<<5) /* Leap pending, will occur at end of day */
1470 unsigned day, month, year; /* data derived from received timecode */ local
1503 day = (unsigned int) buf[14];
1511 day, month, year, hour, minute, second, trackstat, utcflags);
1543 if (month < 1 || month > 12 || day < 1 || day > 31)
1547 if (day > day1tab[month - 1])
1550 day += day1tab[i];
1552 if (day > day2tab[month - 1])
1555 day
1588 unsigned day, month, year; /* data derived from received timecode */ local
[all...]
H A Drefclock_tsyncpci.c619 pp->day = TimeContext.timeObj.days;
639 offset.l_ui = (long)(((pp->day - 1) * 24) + pp->hour + GMT);
651 // Subtract leap second info by one second to determine effective day
887 // Calculate the day of year as the number of days left, then add 1
H A Drefclock_true.c520 &pp->day, &pp->hour, &pp->minute,
545 if (!clocktime(pp->day, pp->hour, pp->minute,
/freebsd-current/usr.bin/find/
H A Dgetdate.y143 | day {
202 day : tDAY { label
336 /* Month and day table. */
371 { "day", tMINUTE_UNIT, 1 * 24 * 60 },
822 /* difference in day of year */
/freebsd-current/usr.sbin/fifolog/lib/
H A Dgetdate.y119 | day {
196 day : tDAY { label
330 /* Month and day table. */
365 { "day", tMINUTE_UNIT, 1 * 24 * 60 },
/freebsd-current/sbin/pfctl/
H A Dpfctl_parser.c517 unsigned int sec, min, hrs, day = runtime; local
519 sec = day % 60;
520 day /= 60;
521 min = day % 60;
522 day /= 60;
523 hrs = day % 24;
524 day /= 24;
527 running, day, hrs, min, sec);
/freebsd-current/usr.bin/calendar/
H A Dparsedata.c52 static int wdayom (int day, int offset, int month, int year);
242 /* Check if there is an every-day or every-month in the string */
379 * day is the day of the week,
383 wdayom (int day, int offset, int month, int year) argument
385 /* Weekday of first day in month */
386 int wday1; /* first day of month */
387 /* Weekday of last day in month */
398 d = (day - wday1 + 1) % 7;
424 * numeric month or day (
[all...]
/freebsd-current/contrib/bearssl/test/
H A Dtest_x509.c526 int year, month, day, hour, minute, second; local
543 if (parse_dec(s, 2, &day) < 0) {
589 if (day < 1 || day > month_length(year, month)) {
592 day_of_year += (day - 1);
/freebsd-current/crypto/openssl/crypto/x509/
H A Dx509_vfy.c1074 int day, sec; local
1076 if (ASN1_TIME_diff(&day, &sec, X509_CRL_get0_lastUpdate(best_crl),
1080 * ASN1_TIME_diff never returns inconsistent signs for |day|
1083 if (day <= 0 && sec <= 0)
1861 int i, day, sec, ret = 0; local
1912 if (ASN1_TIME_diff(&day, &sec, ctm, asn1_cmp_time) == 0)
1919 ret = (day >= 0 && sec >= 0) ? -1 : 1;

Completed in 314 milliseconds

12345678