Home
last modified time | relevance | path

Searched refs:tm_gmtoff (Results 1 – 16 of 16) sorted by relevance

/glibc-2.36/time/
Dtst-strptime2.c88 long int tm_gmtoff = hh * 3600 + mm * 60; in mkbuf() local
90 expect = neg ? -tm_gmtoff : tm_gmtoff; in mkbuf()
100 describe (bool string_valid, long int tm_gmtoff) in describe() argument
103 printf ("valid, tm.tm_gmtoff %ld", tm_gmtoff); in describe()
125 test_result = test_string_valid ? tm.tm_gmtoff : LONG_MAX; in compare()
Dbug-mktime4.c15 && t->tm_isdst == u->tm_isdst && t->tm_gmtoff == u->tm_gmtoff in equal_tm()
Dtzset.c539 tm->tm_gmtoff = tz_rules[isdst].offset; in __tz_compute()
600 tp->tm_gmtoff = 0L; in weak_alias()
603 if (__offtime (timer, tp->tm_gmtoff - leap_correction, tp)) in weak_alias()
Dstrptime_l.c789 tm->tm_gmtoff = 0; in __strptime_internal()
811 tm->tm_gmtoff = (val / 100) * 3600 + (val % 100) * 60; in __strptime_internal()
813 tm->tm_gmtoff = -tm->tm_gmtoff; in __strptime_internal()
Dgetdate.c194 tp->tm_gmtoff = 0; in __getdate_r()
Dtzfile.c750 tp->tm_gmtoff = info->offset; in __tzfile_compute()
Dstrftime_l.c1359 diff = tp->tm_gmtoff; in libc_hidden_def()
/glibc-2.36/time/bits/types/
Dstruct_tm.h20 long int tm_gmtoff; /* Seconds east of UTC. */ member
/glibc-2.36/timezone/
DMakefile62 -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone \
Dprivate.h583 # define TM_GMTOFF tm_gmtoff
/glibc-2.36/manual/
Dtime.texi1018 @item long int tm_gmtoff
1024 The @code{tm_gmtoff} field is derived from BSD and is a GNU library
1029 broken-down time value. Like @code{tm_gmtoff}, this field is a BSD and
1223 @code{tm_wday}, @code{tm_yday}, @code{tm_gmtoff}, and @code{tm_zone}
1237 of @var{brokentime}'s initial @code{tm_gmtoff} and @code{tm_zone}
1791 instead of @var{brokentime}'s @code{tm_gmtoff} and @code{tm_zone}
2729 zone, the value is @code{5*60*60}. Unlike the @code{tm_gmtoff} member
2732 to use @code{tm_gmtoff}, since it contains the correct offset even when
/glibc-2.36/ChangeLog.old/
DChangeLog.66549 Use tm_gmtoff if available.
6580 * time/time.h (tm_gmtoff, tm_zone): Prefix with `__' unless
6588 Explain that timezone's sign is opposite from tm_gmtoff, and that
6589 timezone lacks DST adjustment whereas tm_gmtoff has it.
DChangeLog.21720 * time/gmtime.c: After calling __offtime, zero tm_gmtoff and set
DChangeLog.121008 * time/getdate.c (__getdate_r): Initialize tm_isdst, tm_gmtoff and
DChangeLog.178837 (__tz_convert): Updating of tm_isdst, tm_zone, and tm_gmtoff now
DChangeLog.1610463 tm_gmtoff.