Searched refs:minute (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-current/contrib/ntp/libntp/
H A Dcaltontp.c52 || (jt->minute > MINSPERHR)
69 ntpcal_etime_to_seconds(jt->hour, jt->minute,
H A Dclocktime.c2 * clocktime - compute the NTP date from a day of year, hour, minute
35 * Take a time spec given as day-of-year, hour, minute and second as
55 int minute , /* minute of hour */
56 int second , /* second of minute */
72 SECSPERMIN * ((int32)minute +
/freebsd-current/sys/dev/rtwn/
H A Dif_rtwn_fw.h44 uint8_t minute; member in struct:r92c_fw_hdr
/freebsd-current/stand/i386/libi386/
H A Dtime.c43 int hr, minute, sec; local
51 minute = bcd2bin(v86.ecx & 0xff); /* minute in %cl */
54 return (hr * 3600 + minute * 60 + sec);
/freebsd-current/contrib/ntp/util/
H A Dtg.c32 * year, hh the hour of day and mm the minute of hour. For instance,
119 #define MIN 3 /* minute pulse */
129 {MIN, 800}, /* 0 minute sync pulse */
139 {COEF, 1}, /* 10 1 minute units */
144 {COEF, 1}, /* 15 10 minute tens */
263 int minute, hour, day, year; local
312 &hour, &minute);
354 minute = tm->tm_min;
376 year, day, hour, minute, second, tone);
378 year / 10, day, hour, minute, yea
[all...]
H A Dlsf-times.c68 , cal.minute
157 cal.minute = 0;
/freebsd-current/usr.sbin/cron/cron/
H A Dstructs.h34 bitstr_t bit_decl(minute, MINUTE_COUNT);
H A Dcron.c163 * are already at minute's boundary, so
165 * next minute.
218 int second, minute, hour, dom, month, dow; local
225 minute = tm->tm_min -FIRST_MINUTE;
232 getpid(), second, minute, hour, dom, month, dow))
315 bit_test(e->minute, otzminute) &&
335 bit_test(e->minute, minute) &&
355 * following minute and initialize TargetTime to this value. TargetTime
358 * the "current minute" befor
[all...]
/freebsd-current/contrib/ntp/parseutil/
H A Dtestdcf.c61 long minute; member in struct:clocktime
92 * next minute mark
129 * 59 - usually missing (minute indication), except for leap insertion
243 clock_time->minute = ext_bf(buffer, DCF_M10);
244 clock_time->minute = TIMES10(clock_time->minute) + ext_bf(buffer, DCF_M1);
418 clock_time.minute = 0;
459 clock_time.minute = 0;
492 (int)clock_time.hour, (int)clock_time.minute, (int)i, (int)clock_time.day, (int)clock_time.month,
/freebsd-current/usr.bin/grdc/
H A Dgrdc.c67 int hour, minute, second; local
170 minute = tm->tm_min;
177 minute = (n / 60) % 60;
182 set(minute % 10, 10);
183 set(minute / 10, 14);
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_hopfser.c244 &pp->minute,
256 (pp->minute < 0) || (pp->minute > 59) || (pp->second < 0) ||
288 pp->minute,
329 msyslog(LOG_ERR, " D:%x D:%d D:%d",synch,pp->minute,pp->second);
H A Drefclock_fg.c279 and doubles min every hour at HH:10:ss for a minute.
289 pp->minute = BP1(7)*10 + BP2(7);
295 pp->minute = BP1(6)*10 + BP2(6);
301 if ((pp->hour == 10) && (pp->minute == 10)) {
307 pp->minute, pp->second);
314 pp->year, pp->day, pp->hour, pp->minute, pp->second);
H A Drefclock_datum.c96 ** defined. If you really want to force GMT without the funny +- 30 minute
140 int minute; /* minutes */ member in struct:datum_pts_unit
551 ** Convert the seven bytes received in our time buffer to day, hour, minute,
564 datum_pts->minute = 10*((datum_pts->retbuf[3] & 0x70)>>4) +
578 printf("day %d, hour %d, minute %d, second %d, msec %d\n",
581 datum_pts->minute,
623 datum_pts->minute,
664 datum_pts->minute,
772 printf("PTS: day %d, hour %d, minute %d, second %d, msec %d, Time Error %f\n",
775 datum_pts->minute,
[all...]
H A Drefclock_hpgps.c416 &pp->year, &month, &day, &pp->hour, &pp->minute, &pp->second,
492 pp->minute -= up->tzminute;
495 if (pp->minute < 0) {
496 pp->minute += 60;
499 if (pp->minute > 59) {
500 pp->minute -= 60;
H A Drefclock_mx4200.c484 double minute, lat, lon, alt; local
570 minute = (lat - (double)(int)lat) * 60.0;
571 snprintf(lats, sizeof(lats), "%02d%02.4f", (int)lat, minute);
572 minute = (lon - (double)(int)lon) * 60.0;
573 snprintf(lons, sizeof(lons), "%03d%02.4f", (int)lon, minute);
883 pp->year, pp->day, pp->hour, pp->minute, pp->second,
956 int hour, minute, second, leapsec_warn; local
966 &hour, &minute, &second, &time_sync, &op_mode,
995 if (second > 60 || minute > 59 || hour > 23 ||
996 second < 0 || minute <
[all...]
H A Drefclock_jjy.c190 int year, month, day, hour, minute, second, msecond ; member in struct:jjyunit
433 #define JJY_CLOCKSTATS_MESSAGE_SSCANF_INVALID_TIME "# Invalid time : rc=%d hour=%d minute=%d second=%d"
434 #define JJY_CLOCKSTATS_MESSAGE_SSCANF_INVALID_DATETIME "# Invalid time : rc=%d year=%d month=%d day=%d hour=%d minute=%d second=%d"
1031 pp->minute = up->minute ;
1068 up->hour, up->minute, up->second, up->msecond,
1069 pp->year, pp->day, pp->hour, pp->minute, pp->second,
1266 &up->hour, &up->minute, &up->second ) ;
1268 if ( rc != 3 || up->hour > 23 || up->minute > 59 ||
1272 rc, up->hour, up->minute, u
[all...]
H A Drefclock_leitch.c79 short minute; member in struct:leitchunit
423 if (!clocktime(leitch->yearday,leitch->hour,leitch->minute,
441 if (!clocktime(leitch->yearday,leitch->hour,leitch->minute,
458 if (!clocktime(leitch->yearday,leitch->hour,leitch->minute,
589 leitch->minute = ATOB(2)*10 +ATOB(3);
592 if ((leitch->hour > 23) || (leitch->minute > 60) ||
H A Drefclock_pcf.c200 pp->minute = tp->tm_min;
210 pp->minute, pp->second);
H A Drefclock_hopfpci.c207 pp->minute = m_time.wMinute;
217 m_time.wStatus, pp->hour, pp->minute, pp->second,
/freebsd-current/usr.bin/at/
H A Dparsetime.c90 { "minute", MINUTES,0 }, /* minutes multiplier */
364 int hour, minute = 0; local
375 minute = atoi(sc_token);
376 if (minute > 59)
381 minute = hour%100;
382 if (minute > 59)
416 tm->tm_min = minute;
/freebsd-current/contrib/kyua/utils/
H A Ddatetime.cpp309 /// \param minute The minute in the [0,59] range.
318 const int minute, const int second,
325 PRE(minute >= 0 && minute <= 59);
344 timedata.tm_min = minute;
437 const int minute, const int second,
440 mock_now = timestamp::from_values(year, month, day, hour, minute, second,
316 from_values(const int year, const int month, const int day, const int hour, const int minute, const int second, const int microsecond) argument
435 set_mock_now(const int year, const int month, const int day, const int hour, const int minute, const int second, const int microsecond) argument
/freebsd-current/sys/dev/bnxt/bnxt_en/
H A Dbnxt_ioctl.h153 uint8_t minute; member in struct:bnxt_ioctl_hwrm_fw_get_time
165 uint8_t minute; member in struct:bnxt_ioctl_hwrm_fw_set_time
/freebsd-current/contrib/ntp/libparse/
H A Dclk_sel240x.c148 clock_time->minute = ptime.tm_min;
/freebsd-current/contrib/dialog/
H A Dtimebox.c142 int minute,
196 DLG_TRACE2N("minute", minute);
222 if (hour >= 24 || minute >= 60 || second >= 60) {
263 minute >= 0 ? minute : current.tm_min,
362 minute = mn_box.value;
137 dialog_timebox(const char *title, const char *subtitle, int height, int width, int hour, int minute, int second) argument
/freebsd-current/usr.sbin/cron/lib/
H A Dentry.c53 "bad minute",
161 bit_set(e->minute, 0);
170 bit_set(e->minute, 0);
179 bit_set(e->minute, 0);
188 bit_set(e->minute, 0);
196 bit_set(e->minute, 0);
204 bit_nset(e->minute, 0, (LAST_MINUTE-FIRST_MINUTE+1));
213 bit_nset(e->minute, 0, (LAST_MINUTE-FIRST_MINUTE+1));
241 ch = get_list(e->minute, FIRST_MINUTE, LAST_MINUTE,

Completed in 389 milliseconds

12345