Searched refs:tm_min (Results 1 - 25 of 182) sorted by relevance

12345678

/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_time.h41 int tm_min; member in struct:ibcs2_tm
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dtimegm.c67 if (tm->tm_min < 0 || tm->tm_min > 59)
81 res += tm->tm_min;
H A Dstrftime.c206 tm->tm_min,
267 "%02d", tm->tm_min);
280 tm->tm_min,
288 tm->tm_min);
306 tm->tm_min,
/freebsd-11-stable/contrib/ntp/libntp/
H A Dhumandate.c32 tm->tm_hour, tm->tm_min, tm->tm_sec);
57 tm->tm_hour, tm->tm_min, tm->tm_sec);
H A Duglydate.c38 tm->tm_min = 0;
47 tm->tm_yday, tm->tm_hour, tm->tm_min, tm->tm_sec,
H A Dmktime.c143 tmbuf.tm_min += DSTMINUTES;
144 normalize(&tmbuf.tm_hour, &tmbuf.tm_min, MINSPERHOUR);
175 (result = (atmp->tm_min - btmp->tm_min)) == 0)
198 normalize(&yourtm.tm_min, &yourtm.tm_sec, SECSPERMIN);
199 normalize(&yourtm.tm_hour, &yourtm.tm_min, MINSPERHOUR);
/freebsd-11-stable/contrib/tcpdump/
H A Dgmt2local.c53 (loc->tm_min - gmt->tm_min) * 60;
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dcheck-timegm.c50 tm.tm_min = 3;
66 tm.tm_min != 3 ||
H A Dtimegm.c75 if (tm->tm_min < 0 || tm->tm_min > 59)
89 res += tm->tm_min;
104 tm->tm_min = (secday % 3600) / 60;
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Dmaketime.c126 )*60 + (a->tm_min - b->tm_min)
150 if ((t->tm_min -= (59-sec)/60) < 0) {
151 if ((t->tm_hour -= (59-t->tm_min)/60) < 0) {
163 t->tm_min += 24 * 60;
167 if (60 <= (t->tm_min += sec/60))
168 if (24 <= (t->tm_hour += t->tm_min/60)) {
180 t->tm_min %= 60;
240 | (tm->tm_min ^ gtm->tm_min)
[all...]
H A Drcstime.c57 tm->tm_hour, tm->tm_min, tm->tm_sec
151 t.tm_min = atoi(p+9);
176 z->tm_mon + 1, z->tm_mday, z->tm_hour, z->tm_min, z->tm_sec,
/freebsd-11-stable/contrib/apr/time/unix/
H A Dtimestr.c77 *date_str++ = xt.tm_min / 10 + '0';
78 *date_str++ = xt.tm_min % 10 + '0';
116 *date_str++ = xt.tm_min / 10 + '0';
117 *date_str++ = xt.tm_min % 10 + '0';
138 tm.tm_min = xt->tm_min;
H A Dtime.c101 xt->tm_min = tm.tm_min;
158 days = ((days * 24 + xt->tm_hour) * 60 + xt->tm_min) * 60 + xt->tm_sec;
188 (*ostime)->tm_min = aprtime->tm_min;
219 aprtime->tm_min = (*ostime)->tm_min;
262 tmpdate.tm_min = os2time.minutes;
282 os2time->minutes = lt->tm_min;
/freebsd-11-stable/usr.sbin/makefs/cd9660/
H A Dcd9660_conversion.c159 gm.tm_min -= t.tm_min;
165 return (char)(-(gm.tm_min + 60* (24 * gm.tm_yday + gm.tm_hour)) / 15);
181 (int)t.tm_min,
199 buf[4] = t.tm_min;
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/time/
H A Dt_mktime.c53 if (t->tm_sec != tt.tm_sec || t->tm_min != tt.tm_min ||
116 tms.tm_min = 59;
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-cn3010-evb-hs5.c89 TM_CHECK(tms->tm_min < 0 || tms->tm_min > 59, "minute");
129 tms.tm_min = bcd2bin(reg[1] & 0x7f);
171 reg[1] = bin2bcd(tms.tm_min);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dtime.c117 exploded_time.tm_min,
155 exploded_time.tm_min = (apr_int32_t) svn__strtoul(c, &c);
186 &exploded_time.tm_min,
236 exploded_time.tm_min,
/freebsd-11-stable/contrib/netbsd-tests/lib/libutil/
H A Dt_parsedate.c105 ATF_CHECK_MSG(tm.tm_min == minute,
107 argstr, minute, (int)tm.tm_min);
217 .tm_hour = 13, .tm_min = 21, .tm_sec = 53,
287 tm.tm_sec = tm.tm_min = tm.tm_hour = 0;
293 tm.tm_sec = tm.tm_min = tm.tm_hour = 0;
301 tm.tm_sec = tm.tm_min = 0;
311 tm.tm_sec = tm.tm_min = 0;
317 tm.tm_min -= 5;
323 tm.tm_min += 37;
386 tm.tm_hour = tm.tm_min
[all...]
/freebsd-11-stable/bin/date/
H A Dvary.c342 if (!adjhour(t, '+', (t->tm_min + val) / 60, 0))
345 t->tm_min += val;
346 if (t->tm_min > 59)
347 t->tm_min -= 60;
356 if (val > t->tm_min) {
361 t->tm_min -= val;
368 t->tm_min = val;
/freebsd-11-stable/crypto/openssl/crypto/
H A Do_time.c252 result->tm_min = time_values.minute;
313 tm->tm_min = (time_sec / 60) % 60;
363 offset_hms += tm->tm_hour * 3600 + tm->tm_min * 60 + tm->tm_sec;
457 (tm1.tm_min != tm2.tm_min) || (tm1.tm_sec != tm2.tm_sec)) {
461 tm2.tm_hour, tm2.tm_min, tm2.tm_sec);
464 tm1.tm_hour, tm1.tm_min, tm1.tm_sec);
/freebsd-11-stable/usr.bin/finger/
H A Dsprint.c175 if (!delta->tm_min)
178 (void)printf("%5d", delta->tm_min);
181 delta->tm_hour, delta->tm_min);
/freebsd-11-stable/usr.bin/pom/
H A Dpom.c124 tmd.tm_min = 0;
129 tmd.tm_min = strtol(otime + 3, NULL, 10);
137 (GMT.tm_min / 60.0) + (GMT.tm_sec / 3600.0)) / 24.0);
/freebsd-11-stable/usr.bin/leave/
H A Dleave.c123 (hours == t_12_hour && minutes <= t->tm_min))
128 secs += (minutes - t->tm_min) * 60;
/freebsd-11-stable/contrib/sendmail/src/
H A Darpadate.c128 off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
/freebsd-11-stable/contrib/ntp/libparse/
H A Dclk_sel240x.c148 clock_time->minute = ptime.tm_min;

Completed in 160 milliseconds

12345678