/third_party/musl/src/time/ |
H A D | mktime.c | 10 __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 D | localtime_r.c | 13 __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 D | strftime.c | 143 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 D | gmtime_r.c | 11 tm->__tm_gmtoff = 0; in __gmtime_r()
|
H A D | timegm.c | 15 tm->__tm_gmtoff = 0; in timegm()
|
H A D | strptime.c | 55 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 D | mktime.c | 10 __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 D | localtime_r.c | 13 __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 D | strftime.c | 126 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 D | gmtime_r.c | 11 tm->__tm_gmtoff = 0; in __gmtime_r()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | time.h | 40 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 D | time_zone_libc.cc | 80 #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 D | time.h | 35 #define __tm_gmtoff tm_gmtoff macro 49 long __tm_gmtoff; member
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | time.h | 34 #define __tm_gmtoff tm_gmtoff macro 48 long __tm_gmtoff; member
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | time.h | 35 #define __tm_gmtoff tm_gmtoff macro 49 long __tm_gmtoff; member
|
/third_party/musl/porting/linux/user/src/time/ |
H A D | strftime.c | 183 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 D | gmtime_r.c | 26 tm->__tm_gmtoff = 0; in __gmtime_r()
|
H A D | strptime.c | 94 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 D | strftime.c | 126 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 D | strftime.c | 126 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 D | time.h | 39 #define __tm_gmtoff tm_gmtoff macro 53 long __tm_gmtoff; member
|
/third_party/musl/include/ |
H A D | time.h | 36 #define __tm_gmtoff tm_gmtoff macro 50 long __tm_gmtoff; member
|
/third_party/rust/crates/libc/src/ |
H A D | wasi.rs | 90 pub __tm_gmtoff: c_int,
|