Searched refs:tm_gmtoff (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-11-stable/libexec/bootpd/
H A Dtzone.c45 secondswest = -tm->tm_gmtoff;
/freebsd-11-stable/contrib/tzcode/zic/zdump/
H A DMakefile9 CFLAGS+= -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DSTD_INSPIRED -DPCTS
/freebsd-11-stable/contrib/tzcode/zic/zic/
H A DMakefile9 CFLAGS+= -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DSTD_INSPIRED -DPCTS
/freebsd-11-stable/usr.sbin/zic/zdump/
H A DMakefile9 CFLAGS+= -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DSTD_INSPIRED -DPCTS
/freebsd-11-stable/usr.sbin/zic/zic/
H A DMakefile11 CFLAGS+= -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DSTD_INSPIRED -DPCTS
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_snmp.c199 if (tm->tm_gmtoff < 0)
204 str[9] = (u_char)(labs(tm->tm_gmtoff) / 3600);
205 str[10] = (u_char)((labs(tm->tm_gmtoff) % 3600) / 60);
/freebsd-11-stable/contrib/apr/time/unix/
H A Dtime.c46 return tm->tm_gmtoff;
109 xt->tm_gmtoff = get_offset(&tm);
116 result->tm_gmtoff = offs;
172 *t -= (apr_time_t) xt->tm_gmtoff * APR_USEC_PER_SEC;
198 (*ostime)->tm_gmtoff = aprtime->tm_gmtoff;
200 (*ostime)->__tm_gmtoff = aprtime->tm_gmtoff;
229 aprtime->tm_gmtoff = (*ostime)->tm_gmtoff;
231 aprtime->tm_gmtoff
[all...]
H A Dtimestr.c147 tm.tm_gmtoff = xt->tm_gmtoff;
149 tm.__tm_gmtoff = xt->tm_gmtoff;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dtime.c63 * and tm_gmtoff.
102 /* We get the date in GMT now -- and expect the tm_gmtoff and
167 exploded_time.tm_gmtoff = 0;
191 &exploded_time.tm_gmtoff) == 11)
238 exploded_time.tm_gmtoff / (60 * 60),
239 (abs(exploded_time.tm_gmtoff) / 60) % 60);
H A Ddate.c180 ms.base.tm_gmtoff = ms.offhours * 3600 + ms.offminutes * 60;
183 ms.base.tm_gmtoff = -(ms.offhours * 3600 + ms.offminutes * 60);
377 expt.tm_gmtoff = expnow.tm_gmtoff;
385 expt.tm_gmtoff = expthen.tm_gmtoff;
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/time/
H A Dt_strptime.c186 tm.tm_gmtoff = -1;
202 ATF_REQUIRE_MSG(tm.tm_gmtoff == value,
204 "expected: tm.tm_gmtoff=%ld, got: tm.tm_gmtoff=%ld",
205 name, fmt, value, tm.tm_gmtoff);
206 printf("%s %s %ld\n", name, fmt, tm.tm_gmtoff);
/freebsd-11-stable/contrib/apr-util/misc/
H A Dapr_date.c266 /* ap_mplode_time uses tm_usec and tm_gmtoff fields, but they haven't
271 * tm_gmtoff is the number of seconds off of GMT the time is. By
276 ds.tm_gmtoff = 0;
600 /* tm_gmtoff is the number of seconds off of GMT the time is.
605 * If there is any confusion, tm_gmtoff will remain 0.
607 ds.tm_gmtoff = 0;
615 ds.tm_gmtoff -= (offset / 100) * 60 * 60;
616 ds.tm_gmtoff -= (offset % 100) * 60;
620 ds.tm_gmtoff += (offset / 100) * 60 * 60;
621 ds.tm_gmtoff
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_pcf.c171 if ((tm.tm_isdst > 0 && tm.tm_gmtoff != 7200)
172 || (tm.tm_isdst == 0 && tm.tm_gmtoff != 3600)
/freebsd-11-stable/contrib/apr/include/
H A Dapr_time.h95 * - tm_gmtoff isn't an ANSI field (it's a BSDism)
119 apr_int32_t tm_gmtoff; member in struct:apr_time_exp_t
/freebsd-11-stable/usr.sbin/cron/cron/
H A Dcron.c250 && tm->tm_gmtoff != lasttm.tm_gmtoff ) {
252 diff = tm->tm_gmtoff - lasttm.tm_gmtoff;
294 time_t difftime = TargetTime + tm->tm_gmtoff - diff;
/freebsd-11-stable/contrib/tzcode/stdtime/
H A Dprivate.h14 #define TM_GMTOFF tm_gmtoff
/freebsd-11-stable/include/
H A Dtime.h137 long tm_gmtoff; /* offset from UTC in seconds */ member in struct:tm
/freebsd-11-stable/usr.bin/calendar/
H A Dcalendar.c164 utcoffset = tm.tm_gmtoff;
/freebsd-11-stable/sbin/adjkerntz/
H A Dadjkerntz.c207 offset = -local.tm_gmtoff;
259 offset = -local.tm_gmtoff;
/freebsd-11-stable/usr.sbin/newsyslog/
H A Dptimes.c523 if (tm.tm_gmtoff < 0) {
525 tz_offset = -tm.tm_gmtoff;
528 tz_offset = tm.tm_gmtoff;
/freebsd-11-stable/contrib/file/src/
H A Dcdf_time.c131 tm.tm_gmtoff = 0;
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dstrftime.c348 (long)tm->tm_gmtoff
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_openbsd.h184 long int tm_gmtoff; member in struct:__sanitizer::__sanitizer_tm
H A Dsanitizer_platform_limits_freebsd.h211 long int tm_gmtoff; member in struct:__sanitizer::__sanitizer_tm
/freebsd-11-stable/usr.sbin/ctm/ctm/
H A Dctm_pass3.c78 tm.tm_isdst = tm.tm_gmtoff = 0;

Completed in 502 milliseconds

12