Searched refs:tm_yday (Results 1 - 25 of 62) sorted by relevance

123

/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_time.h47 int tm_yday; member in struct:ibcs2_tm
/freebsd-11-stable/contrib/tcpdump/
H A Dgmt2local.c62 dir = loc->tm_yday - gmt->tm_yday;
/freebsd-11-stable/contrib/ntp/libntp/
H A Duglydate.c36 tm->tm_yday = 0;
47 tm->tm_yday, tm->tm_hour, tm->tm_min, tm->tm_sec,
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dstrptime.c193 timeptr->tm_yday = wnum * 7 + timeptr->tm_wday - fday;
194 if (timeptr->tm_yday < 0) {
196 timeptr->tm_yday = 0;
209 timeptr->tm_yday = wnum * 7 + (timeptr->tm_wday + 6) % 7 - fday;
210 if (timeptr->tm_yday < 0) {
212 timeptr->tm_yday = 0;
229 timeptr->tm_yday = offset + (wnum - 1) * 7 + timeptr->tm_wday - fday;
230 if (timeptr->tm_yday < 0) {
232 timeptr->tm_yday = 0;
321 timeptr->tm_yday
[all...]
H A Dstrftime.c126 return (tm->tm_yday + 7 - (tm->tm_yday % 7 - tm->tm_wday + 7) % 7) / 7;
139 return (tm->tm_yday + 7 - (tm->tm_yday % 7 - wday + 7) % 7) / 7;
152 int w1day = (wday - tm->tm_yday % 7 + 7) % 7;
155 ret = (tm->tm_yday + w1day) / 7;
250 "%03d", tm->tm_yday + 1);
/freebsd-11-stable/contrib/sendmail/src/
H A Darpadate.c135 else if (lt->tm_yday < gmt.tm_yday)
137 else if (lt->tm_yday > gmt.tm_yday)
/freebsd-11-stable/usr.sbin/makefs/cd9660/
H A Dcd9660_conversion.c157 gm.tm_yday -= t.tm_yday;
161 gm.tm_yday = -1;
163 gm.tm_yday = 1;
165 return (char)(-(gm.tm_min + 60* (24 * gm.tm_yday + gm.tm_hour)) / 15);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dtime.c62 * to completely fill in an apr_time_exp_t: tm_yday, tm_isdst,
165 exploded_time.tm_yday = 0;
189 &exploded_time.tm_yday,
194 exploded_time.tm_yday -= 1;
/freebsd-11-stable/contrib/apr/time/unix/
H A Dtime.c107 xt->tm_yday = tm.tm_yday;
194 (*ostime)->tm_yday = aprtime->tm_yday;
225 aprtime->tm_yday = (*ostime)->tm_yday;
H A Dtimestr.c144 tm.tm_yday = xt->tm_yday;
/freebsd-11-stable/lib/libc/stdtime/
H A Dstrptime.c233 tm->tm_yday = i - 1;
615 tm->tm_yday = start_of_month[isleap(tm->tm_year +
640 tm->tm_yday = tmpyday;
648 while (tm->tm_yday >=
654 tm->tm_yday -=
663 tm->tm_mday = tm->tm_yday -
671 while (i++ <= tm->tm_yday) {
H A Dstrftime.c243 pt = _conv(t->tm_yday + 1,
336 pt = _conv((t->tm_yday + DAYSPERWEEK -
382 yday = t->tm_yday;
449 pt = _conv((t->tm_yday + DAYSPERWEEK -
/freebsd-11-stable/usr.bin/finger/
H A Dsprint.c173 if (!delta->tm_yday)
183 (void)printf("%4dd", delta->tm_yday);
H A Dlprint.c187 if (w->idletime != -1 && (delta->tm_yday ||
191 if (delta->tm_yday > 0) {
193 delta->tm_yday,
194 delta->tm_yday == 1 ? "" : "s");
/freebsd-11-stable/contrib/unbound/compat/
H A Dgmtime_r.c92 tmp->tm_yday = (int) days;
/freebsd-11-stable/contrib/apr/include/
H A Dapr_time.h115 apr_int32_t tm_yday; member in struct:apr_time_exp_t
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Dmaketime.c110 int difference_in_day_of_year = a->tm_yday - b->tm_yday;
187 * Ignore TM's old tm_yday and tm_wday, but fill in their correct values.
214 tm->tm_yday = month_yday[tm->tm_mon] + tm->tm_mday
H A Dpartime.c211 = t->tm.tm_year = t->tm.tm_wday = t->tm.tm_yday
507 s = parse_ranged (s, 3, 1, 366, &t->tm.tm_yday);
508 t->tm.tm_yday--;
653 conflict (t->tm.tm_wday, u->tm.tm_yday) ||
671 merge_ (t->tm.tm_wday, u->tm.tm_yday)
/freebsd-11-stable/usr.sbin/ac/
H A Dac.c432 if (day >= 0 && day != ltm->tm_yday) {
433 day = ltm->tm_yday;
444 day = ltm->tm_yday;
487 if (day >= 0 && day != ltm->tm_yday) {
/freebsd-11-stable/include/
H A Dtime.h135 int tm_yday; /* days since January 1 [0-365] */ member in struct:tm
/freebsd-11-stable/contrib/diff/lib/
H A Dstrftime.c290 + (a->tm_yday - b->tm_yday));
961 DO_NUMBER (3, 1 + tp->tm_yday);
1110 DO_NUMBER (2, (tp->tm_yday - tp->tm_wday + 7) / 7);
1119 int days = iso_week_days (tp->tm_yday, tp->tm_wday);
1125 days = iso_week_days (tp->tm_yday + (365 + __isleap (year)),
1130 int d = iso_week_days (tp->tm_yday - (365 + __isleap (year)),
1157 DO_NUMBER (2, (tp->tm_yday - (tp->tm_wday - 1 + 7) % 7 + 7) / 7);
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrptime.c253 if (!(_conv_num(&bp, &tm->tm_yday, 1, 366)))
255 tm->tm_yday--;
/freebsd-11-stable/usr.bin/calendar/
H A Dpom.c139 days_today = (GMT.tm_yday + 1) + ((GMT.tm_hour +
149 days_tomorrow = (GMT.tm_yday + 1) + ((GMT.tm_hour +
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/time/
H A Dt_strptime.c46 int tm_mon, int tm_year, int tm_wday, int tm_yday)
83 H_REQUIRE_FIELD(tm_yday);
44 h_pass(const char *buf, const char *fmt, int len, int tm_sec, int tm_min, int tm_hour, int tm_mday, int tm_mon, int tm_year, int tm_wday, int tm_yday) argument
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_bancomm.c101 int32_t tm_yday; member in struct:stfp_tm
594 time_vme->day = maj.tm_yday+1;
610 time_vme->day = stfp->tm.tm_yday+1;

Completed in 172 milliseconds

123