Searched refs:tm_mday (Results 1 - 25 of 133) sorted by relevance

123456

/freebsd-9.3-release/sys/i386/ibcs2/
H A Dibcs2_time.h43 int tm_mday; member in struct:ibcs2_tm
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dtimegm.c64 if (tm->tm_mday < 1 || tm->tm_mday > ndays[is_leap(tm->tm_year)][tm->tm_mon])
78 res += tm->tm_mday - 1;
H A Dcheck-timegm.c48 tm.tm_mday = 1;
56 tm.tm_mday = 0;
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dtimegm.c66 if (tm->tm_mday < 1 || tm->tm_mday > ndays[is_leap(tm->tm_year)][tm->tm_mon])
80 res += tm->tm_mday - 1;
H A Dstrftime.c208 tm->tm_mday,
219 "%02d", tm->tm_mday);
225 tm->tm_mday,
230 "%2d", tm->tm_mday);
235 tm->tm_mon + 1, tm->tm_mday);
338 tm->tm_mday);
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Dmaketime.c155 if (--t->tm_mday <= 0) {
160 t->tm_mday = month_days(t);
172 if (month_days(t) < ++t->tm_mday) {
177 t->tm_mday = 1;
214 tm->tm_yday = month_yday[tm->tm_mon] + tm->tm_mday
238 | (tm->tm_mday ^ gtm->tm_mday)
285 if (!TM_DEFINED(tm.tm_mday))
286 tm.tm_mday = tm0->tm_mday;
[all...]
H A Drcstime.c56 tm->tm_mon+1, tm->tm_mday,
149 t.tm_mday = atoi(p+3);
176 z->tm_mon + 1, z->tm_mday, z->tm_hour, z->tm_min, z->tm_sec,
H A Dpartime.c210 t->tm.tm_sec = t->tm.tm_min = t->tm.tm_hour = t->tm.tm_mday = t->tm.tm_mon
503 s = parse_ranged (s, 2, 1, 31, &t->tm.tm_mday);
515 ) + 1, 1, 31, &t->tm.tm_mday);
650 conflict (t->tm.tm_mday, u->tm.tm_mday) ||
668 merge_ (t->tm.tm_mday, u->tm.tm_mday)
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dmktime.c160 result = (atmp->tm_mday - btmp->tm_mday);
200 normalize(&yourtm.tm_mday, &yourtm.tm_hour, HOURSPERDAY);
202 while (yourtm.tm_mday <= 0) {
204 yourtm.tm_mday +=
210 if (yourtm.tm_mday <= i)
212 yourtm.tm_mday -= i;
H A Dhumandate.c31 tm->tm_mday, months[tm->tm_mon],
/freebsd-9.3-release/bin/date/
H A Dvary.c202 if (t->tm_mday > lmdays)
203 t->tm_mday = lmdays;
217 if (val > lmdays - t->tm_mday) {
218 val -= lmdays - t->tm_mday + 1;
219 t->tm_mday = 1;
223 t->tm_mday += val;
230 if (val >= t->tm_mday) {
231 val -= t->tm_mday;
232 t->tm_mday = 1;
235 t->tm_mday
[all...]
/freebsd-9.3-release/usr.bin/calendar/
H A Dday.c95 tm.tm_mday = tp.tm_mday;
109 tm.tm_mday = d;
/freebsd-9.3-release/usr.bin/w/
H A Dpr_time.c69 else if (tm.tm_mday != tp.tm_mday ||
/freebsd-9.3-release/usr.sbin/newsyslog/
H A Dptimes.c161 tm.tm_mday = l;
170 || tm.tm_mday < 1 || tm.tm_mday > 31)
270 tm.tm_mday += save;
272 if (tm.tm_mday > daysmon) {
274 tm.tm_mday = tm.tm_mday - daysmon;
288 tm.tm_mday = daysmon;
298 tm.tm_mday = l;
418 (ptime->tm.tm_mday> dp
[all...]
/freebsd-9.3-release/usr.sbin/pw/
H A Dpsdate.c212 i = T->tm_mday;
218 i = T->tm_mday;
222 if (T->tm_mday != i) {
223 T->tm_mday = 1;
268 parse_datesub(tmp, &T->tm_mday, &T->tm_mon, &T->tm_year);
281 parse_datesub(datestr, &T->tm_mday, &T->tm_mon, &T->tm_year);
290 parse_datesub(datestr, &T->tm_mday, &T->tm_mon, &T->tm_year);
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-cn3010-evb-hs5.c91 TM_CHECK(tms->tm_mday < 1 || tms->tm_mday > 31, "day");
136 tms.tm_mday = bcd2bin(reg[4] & 0x3f);
174 reg[4] = bin2bcd(tms.tm_mday);
/freebsd-9.3-release/usr.bin/at/
H A Dparsetime.c307 tm->tm_mday += delay;
383 tm->tm_mday++;
391 tm->tm_mday++;
428 (tm->tm_mon > mon ||(tm->tm_mon == mon && tm->tm_mday > mday)))
431 tm->tm_mday = mday;
462 tm->tm_mday ++;
489 mday = tm->tm_mday;
609 runtime.tm_mday++;
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dtime.c74 tm.tm_mday = 1;
77 tm.tm_mday++;
92 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
/freebsd-9.3-release/contrib/dialog/
H A Dcalendar.c179 cell = current->tm_mday - ((6 + current->tm_mday - current->tm_wday) % 7);
180 if ((current->tm_mday - 1) % 7 != current->tm_wday)
221 int day = current->tm_mday;
242 mday = ((6 + current->tm_mday - current->tm_wday) % 7) - 7;
246 week = (current->tm_yday + 6 + mday - current->tm_mday) / 7;
448 day = current.tm_mday;
466 } else if (day > current.tm_mday) {
468 } else if (day < current.tm_mday) {
639 && (current.tm_mday !
[all...]
/freebsd-9.3-release/usr.bin/chpass/
H A Dutil.c74 tp->tm_mday, tp->tm_year + 1900);
130 lt->tm_mday = day;
/freebsd-9.3-release/contrib/file/src/
H A Dcdf_time.c125 tm.tm_mday = cdf_getday(tm.tm_year, (int)t);
163 *t += tm.tm_mday * 60 * 60 * 24;
/freebsd-9.3-release/contrib/tzcode/stdtime/
H A Dasctime.c112 ** (e.g., timeptr->tm_mday) when processing "%Y".
121 timeptr->tm_mday, timeptr->tm_hour,
/freebsd-9.3-release/usr.sbin/ctm/ctm_rmail/
H A Derror.c86 tm->tm_mon+1, tm->tm_mday, tm->tm_hour, tm->tm_min);
/freebsd-9.3-release/contrib/ntp/libparse/
H A Dclk_sel240x.c144 clock_time->day = ptime.tm_mday;
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_dumbclock.c261 asserted_tm.tm_mday = up->ymd.tm_mday;
305 pp->day = ymd2yd (adjyear, adjmon, gmtp->tm_mday);
312 adjyear,adjmon,gmtp->tm_mday,pp->hour,pp->minute,

Completed in 150 milliseconds

123456