Home
last modified time | relevance | path

Searched refs:__tm_gmtoff (Results 1 - 23 of 23) sorted by relevance

/third_party/musl/src/time/
H A Dmktime.c10 __secs_to_zone(t, 1, &new.tm_isdst, &new.__tm_gmtoff, &opp, &new.__tm_zone, TZ_USE_ENV); in mktime()
13 t -= opp - new.__tm_gmtoff; in mktime()
15 t -= new.__tm_gmtoff; in mktime()
18 __secs_to_zone(t, 0, &new.tm_isdst, &new.__tm_gmtoff, &opp, &new.__tm_zone, TZ_USE_ENV); in mktime()
20 if (__secs_to_tm(t + new.__tm_gmtoff, &new) < 0) goto error; in mktime()
H A Dlocaltime_r.c13 __secs_to_zone(*t, 0, &tm->tm_isdst, &tm->__tm_gmtoff, 0, &tm->__tm_zone, TZ_USE_ENV); in __localtime_r()
14 if (__secs_to_tm((long long)*t + tm->__tm_gmtoff, tm) < 0) { in __localtime_r()
32 __secs_to_zone(*t, 0, &tm->tm_isdst, &tm->__tm_gmtoff, 0, &tm->__tm_zone, TZ_NO_USE_ENV); in localtime_noenv_r()
33 if (__secs_to_tm((long long)*t + tm->__tm_gmtoff, tm) < 0) { in localtime_noenv_r()
H A Dstrftime.c143 val = __tm_to_secs(tm) - tm->__tm_gmtoff; in __strftime_fmt_1()
199 tm->__tm_gmtoff/3600*100 + tm->__tm_gmtoff%3600/60); in __strftime_fmt_1()
H A Dgmtime_r.c11 tm->__tm_gmtoff = 0; in __gmtime_r()
H A Dtimegm.c15 tm->__tm_gmtoff = 0; in timegm()
H A Dstrptime.c55 tm->__tm_gmtoff = 0; in __getgmtoff()
87 tm->__tm_gmtoff = sign * (h * 3600 + m * 60); in __getgmtoff()
/third_party/musl/porting/liteos_a/kernel/src/time/
H A Dmktime.c10 __secs_to_zone(t, 1, &new.tm_isdst, &new.__tm_gmtoff, &opp, &new.__tm_zone); in mktime()
13 t -= opp - new.__tm_gmtoff; in mktime()
15 t -= new.__tm_gmtoff; in mktime()
18 __secs_to_zone(t, 0, &new.tm_isdst, &new.__tm_gmtoff, &opp, &new.__tm_zone); in mktime()
20 if (__secs_to_tm(t + new.__tm_gmtoff, &new) < 0) goto error; in mktime()
H A Dlocaltime_r.c13 __secs_to_zone(*t, 0, &tm->tm_isdst, &tm->__tm_gmtoff, 0, &tm->__tm_zone); in __localtime_r()
14 if (__secs_to_tm((long long)*t + tm->__tm_gmtoff, tm) < 0) { in __localtime_r()
H A Dstrftime.c126 val = __tm_to_secs(tm) - tm->__tm_gmtoff; in __strftime_fmt_1()
179 tm->__tm_gmtoff/3600*100 + tm->__tm_gmtoff%3600/60); in __strftime_fmt_1()
H A Dgmtime_r.c11 tm->__tm_gmtoff = 0; in __gmtime_r()
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dtime.h40 long __tm_gmtoff; \
44 #define __tm_gmtoff tm_gmtoff macro
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_libc.cc80 #elif defined(__tm_gmtoff)
81 auto tm_gmtoff(const std::tm& tm) -> decltype(tm.__tm_gmtoff) {
82 return tm.__tm_gmtoff;
90 auto tm_gmtoff(const T& tm) -> decltype(tm.__tm_gmtoff) {
91 return tm.__tm_gmtoff;
/third_party/musl/porting/uniproton/kernel/include/
H A Dtime.h35 #define __tm_gmtoff tm_gmtoff macro
49 long __tm_gmtoff; member
/third_party/musl/porting/liteos_m/user/include/
H A Dtime.h34 #define __tm_gmtoff tm_gmtoff macro
48 long __tm_gmtoff; member
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtime.h35 #define __tm_gmtoff tm_gmtoff macro
49 long __tm_gmtoff; member
/third_party/musl/porting/linux/user/src/time/
H A Dstrftime.c183 val = __tm_to_secs(tm) - tm->__tm_gmtoff; in __strftime_fmt_1()
241 tm->__tm_gmtoff/3600*100 + tm->__tm_gmtoff%3600/60); in __strftime_fmt_1()
H A Dgmtime_r.c26 tm->__tm_gmtoff = 0; in __gmtime_r()
H A Dstrptime.c94 tm->__tm_gmtoff = 0; in __getgmtoff()
126 tm->__tm_gmtoff = sign * (h * __STRPTIME_SECOND_IN_HOUR + m * __STRPTIME_TIME_BASE); in __getgmtoff()
/third_party/musl/porting/liteos_m/kernel/src/time/
H A Dstrftime.c126 val = __tm_to_secs(tm) - tm->__tm_gmtoff; in __strftime_fmt_1()
179 tm->__tm_gmtoff/3600*100 + tm->__tm_gmtoff%3600/60); in __strftime_fmt_1()
/third_party/musl/porting/uniproton/kernel/src/time/
H A Dstrftime.c126 val = __tm_to_secs(tm) - tm->__tm_gmtoff; in __strftime_fmt_1()
179 tm->__tm_gmtoff/3600*100 + tm->__tm_gmtoff%3600/60); in __strftime_fmt_1()
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtime.h39 #define __tm_gmtoff tm_gmtoff macro
53 long __tm_gmtoff; member
/third_party/musl/include/
H A Dtime.h36 #define __tm_gmtoff tm_gmtoff macro
50 long __tm_gmtoff; member
/third_party/rust/crates/libc/src/
H A Dwasi.rs90 pub __tm_gmtoff: c_int,

Completed in 9 milliseconds