Searched refs:day (Results 1 - 25 of 172) sorted by relevance

1234567

/freebsd-9.3-release/sys/mips/include/
H A Dclockvar.h48 int day; /* day (1 - 31) */ member in struct:tod_time
52 int dow; /* day of week (0 - 6; 0 = Sunday) */
/freebsd-9.3-release/contrib/ntp/conf/
H A Dmalarky.conf15 filegen peerstats file peerstats type day enable
16 filegen loopstats file loopstats type day enable
17 filegen clockstats file clockstats type day enable
H A Dbeauregard.conf14 filegen peerstats file peerstats type day enable
15 filegen loopstats file loopstats type day enable
16 filegen clockstats file clockstats type day enable
H A Dpogo.conf43 filegen loopstats file loopstats type day enable
44 filegen cryptostats file cryptostats type day enable
H A Drackety.conf53 filegen peerstats file peerstats type day enable
54 filegen loopstats file loopstats type day enable
55 filegen clockstats file clockstats type day enable
H A Dgrundoon.conf36 filegen loopstats file loopstats type day enable
/freebsd-9.3-release/contrib/tzdata/
H A Dleapseconds.awk64 day = 31
67 day = 30
69 printf "Leap\t%s\t%s\t%s\t%s\tS\n", year, month, day, sign
/freebsd-9.3-release/contrib/ntp/scripts/stats/
H A Ditf.S1 itf <- scan(file1, list(day=0, sec=0, offset=0, stab=0))
5 plot(itf$sec, itf$offset, type="l", xlab=paste("MJD", itf$day, "Time (s)"), ylab="Internal Offset (ns)", ylim=c(-400, 400))
H A Dtdata.S1 tdata <- scan(file1, list(day=0, sec=0, m=0, w=0, x=0, y=0, z=0))
5 plot(tdata$sec, tdata$m, type="l", xlab=paste("MJD", tdata$day, "Time (s)"), ylab="LORAN-M SNR (dB)")
H A Densemble.S1 ensemble <- scan(file1, list(day=0, sec=0, gps=0, gpsw=0, loran=0, loranw=0, ensemble=0, std=0))
5 plot(ensemble$sec, ensemble$ensemble, type="l", xlab=paste("MJD", ensemble$day, "Time (s)"), ylab="Ensemble Offset (ns)", ylim=c(-400, 400))
H A Dloop.S2 loop <- scan(file1, list(day=0, sec=0, offset=0, freq=0, tc=0))
7 plot(loop$sec, loop$offset, type="l", xlab=paste("MJD", loop$day, "Time (s)"), ylab="PLL Offset (us)", ylim=c(-400, 400))
H A Detf.S3 etf <- scan(file1, list(day=0, sec=0, offset=0, stab=0))
15 plot(etf$sec, etf$offset, type="l", xlab=paste("MJD", etf$day, "Time (s)"), ylab="External Offset (ns)", ylim=c(-400, 400))
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_heath.c43 * transition. The timecode includes both the day of year and time of
44 * day. The GC-1001 II has a true bipolar output and a complement of
46 * day.
79 * dd/mm/yr = day, month, year
84 * then lost again for about a day.
278 int month, day; local
304 &pp->minute, &pp->second, &dsec, a, &month, &day,
332 day = tm_time_p->tm_mday;
347 * We determine the day of the year from the DIPswitches. This
353 * months of that year, add one to the day
[all...]
H A Drefclock_hpgps.c42 * than 10 usec. per day.
107 * Tables to compute the day of year from yyyymmdd timecode.
262 int month, day, lastday; local
416 &pp->year, &month, &day, &pp->hour, &pp->minute, &pp->second,
461 * Compute the day of year from the yyyymmdd format.
463 if (month < 1 || month > 12 || day < 1) {
470 if (day > day1tab[month - 1]) {
474 for (i = 0; i < month - 1; i++) day += day1tab[i];
478 if (day > day2tab[month - 1]) {
482 for (i = 0; i < month - 1; i++) day
[all...]
H A Dntp_util.c44 #define L_DAY 86400UL /* seconds per day */
208 * to simply set the time of day to the current time of day, but
524 * day (MJD)
544 u_long day; local
551 day = now.l_ui / 86400 + MJD_1900;
555 "%lu %s %s %x %.9f %.9f %.9f %.9f\n", day,
567 * day (MJD)
585 u_long day; local
592 day
619 u_long day; local
690 u_long day; local
734 u_long day; local
771 u_long day; local
805 u_long day; local
843 u_long day; local
[all...]
H A Drefclock_hopfser.c220 int day, month; /* ddd conversion */ local
252 &day,
264 (day < 1) || (day > 31) ||
274 pp->day = ymd2yd(pp->year,month,day);
290 day,
/freebsd-9.3-release/usr.bin/calendar/
H A Devents.c41 event_add(int year, int month, int day, char *date, int var, char *txt, argument
49 * - Copy the machine readable day and month
57 e->day = day;
68 addtodate(e, year, month, day);
107 fprintf(stderr, "event_print_allmonth: %d, day: %d\n",
108 month, day);
/freebsd-9.3-release/usr.bin/calendar/calendars/
H A Dcalendar.christian10 01/05 Last (twelfth) day of Christmastide
12 Easter-47 Shrove Tuesday / Mardi Gras (day before Ash Wednesday)
13 Easter-46 Ash Wednesday (First day of Lent)
29 12/25 Christmastide begins: First day of Christmas
30 12/26 Second day of Christmas (Boxing Day)
/freebsd-9.3-release/usr.sbin/rtadvd/
H A Dtimer_subr.c99 uint32_t day; local
111 day = hour / 24;
115 if (day > 0)
116 p += sprintf(p, "%" PRIu32 "d", day);
/freebsd-9.3-release/usr.bin/chpass/
H A Dutil.c88 int day, month, year; local
115 day = atoi(t);
119 if (day < 1 || day > 31 || month < 1 || month > 12)
130 lt->tm_mday = day;
/freebsd-9.3-release/sys/sys/
H A Dclock.h61 * Structure to hold the values typically reported by time-of-day clocks.
68 int day; /* day (1 - 31) */ member in struct:clocktime
72 int dow; /* day of week (0 - 6; 0 = Sunday) */
/freebsd-9.3-release/contrib/ntp/util/
H A Dtg.c31 * string yydddhhmmss, where yy is the year of century, ddd the day of
32 * year, hh the hour of day and mm the minute of hour. For instance,
159 {COEF, 1}, /* 30 1 day units */
164 {COEF, 1}, /* 35 10 day tens */
169 {COEF, 1}, /* 40 100 day hundreds */
263 int minute, hour, day, year; local
311 sscanf(optarg, "%2d%3d%2d%2d", &year, &day,
356 day = tm->tm_yday + 1;
375 printf("year %d day %d time %02d:%02d:%02d tone %d\n",
376 year, day, hou
[all...]
/freebsd-9.3-release/sys/kern/
H A Dsubr_clock.c84 * (seconds since 1/1/1970) and yr/mo/day/hr/min/sec
129 ct->year, ct->mon, ct->day,
148 if (ct->mon < 1 || ct->mon > 12 || ct->day < 1 ||
149 ct->day > days_in_month(year, ct->mon) ||
168 days += (ct->day - 1);
204 ct->day = days + 1;
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dtime.c135 int year, month, day, hour, minute, second; local
157 &year, &month, &day, &hour, &minute, &second) != 6)
163 ((month == 2 && is_leap(year)) ? 1 : 0), day);
172 value = second + (60 * minute) + (3600 * hour) + ((day - 1) * 86400);
/freebsd-9.3-release/contrib/cvs/
H A Dmdate-sh41 # Find the month. Next argument is day, followed by the year or time.
62 day=$2
65 # the time of day or the year.
92 echo $day $month $year

Completed in 337 milliseconds

1234567