HomeSort by relevance Sort by last modified time
    Searched refs:tm_gmtoff (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/base/libs/androidfw/tests/
ZipUtils_test.cpp 65 EXPECT_EQ(0, t.tm_gmtoff);
  /bionic/libc/bionic/
time64.c 270 assert(tm->tm_gmtoff >= -24 * 60 * 60);
271 assert(tm->tm_gmtoff <= 24 * 60 * 60);
379 dest->tm_gmtoff = src->tm_gmtoff;
411 dest->tm_gmtoff = src->tm_gmtoff;
541 p->tm_gmtoff = 0;
  /bionic/libc/include/
time.h 56 long int tm_gmtoff; member in struct:tm
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
time.h 135 long tm_gmtoff; /* offset from UTC in seconds */ member in struct:tm
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
TimerWrapper.c 166 GmTime->tm_gmtoff = 0;
  /external/python/cpython3/Lib/test/
test_time.py 627 self.assertTrue(hasattr(lt, "tm_gmtoff"))
632 if lt.tm_gmtoff is None:
635 self.assertEqual(lt.tm_gmtoff, -[time.timezone, time.altzone][lt.tm_isdst])
651 self.assertEqual(new_lt.tm_gmtoff, lt.tm_gmtoff)
654 self.assertEqual(new_lt.tm_gmtoff, lt.tm_gmtoff)
662 self.assertEqual(t.tm_gmtoff, 5 * 3600)
672 self.assertIs(lt.tm_gmtoff, None)
    [all...]
  /system/core/logd/
LogKlog.cpp 284 if ((tm.tm_gmtoff < 0) && ((-tm.tm_gmtoff) > (long)real.tv_sec)) {
287 real.tv_sec += tm.tm_gmtoff;
  /device/linaro/bootloader/edk2/CryptoPkg/Include/
OpenSslSupport.h 137 long tm_gmtoff; /* offset from CUT in seconds */ member in struct:tm
  /external/v8/src/base/platform/
platform-freebsd.cc 53 // tm_gmtoff includes any daylight savings offset, so subtract it.
54 return static_cast<double>(t->tm_gmtoff * msPerSecond -
platform-macos.cc 116 // tm_gmtoff includes any daylight savings offset, so subtract it.
117 return static_cast<double>(t->tm_gmtoff * msPerSecond -
platform-openbsd.cc 51 // tm_gmtoff includes any daylight savings offset, so subtract it.
52 return static_cast<double>(t->tm_gmtoff * msPerSecond -
platform-qnx.cc 102 // tm_gmtoff includes any daylight savings offset, so subtract it.
103 return static_cast<double>(t->tm_gmtoff * msPerSecond -
platform-linux.cc 107 // tm_gmtoff includes any daylight savings offset, so subtract it.
108 return static_cast<double>(t->tm_gmtoff * msPerSecond -
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
time.h 146 long int tm_gmtoff; /* Seconds east of UTC. */ member in struct:tm
  /toolchain/binutils/binutils-2.27/gas/config/
te-vms.c 294 gmtoff = ts->tm_gmtoff;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
timemodule.c 737 janzone = -p->tm_gmtoff;
742 julyzone = -p->tm_gmtoff;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timemodule.c 737 janzone = -p->tm_gmtoff;
742 julyzone = -p->tm_gmtoff;
    [all...]
  /external/python/cpython2/Modules/
timemodule.c 737 janzone = -p->tm_gmtoff;
742 julyzone = -p->tm_gmtoff;
  /bionic/libc/tzcode/
private.h 78 /* Enable tm_gmtoff and tm_zone on GNUish systems. */
442 guessing if NO_TM_ZONE is defined. Similarly for TM_GMTOFF. */
446 # if !defined TM_GMTOFF && !defined NO_TM_GMTOFF
447 # define TM_GMTOFF tm_gmtoff
  /external/libchrome/base/time/
time_posix.cc 252 timestruct.tm_gmtoff = 0; // not a POSIX field, so mktime/timegm ignore
  /external/python/cpython3/Lib/email/
utils.py 370 delta = datetime.timedelta(seconds=localtm.tm_gmtoff)
  /external/python/cpython3/Modules/
timemodule.c 258 {"tm_gmtoff", "offset from UTC in seconds"},
304 SET(10, p->tm_gmtoff);
381 If the platform supports the tm_gmtoff and tm_zone, they are available as\n\
446 p->tm_gmtoff = item == Py_None ? 0 : PyLong_AsLong(item);
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/time/
wcsftime.c 460 diff = t->tm_gmtoff;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.h 387 long int tm_gmtoff; member in struct:__sanitizer::__sanitizer_tm
    [all...]
  /external/webrtc/webrtc/base/
httpcommon.cc 389 *seconds = gmt + tm_for_timezone->tm_gmtoff;

Completed in 776 milliseconds

1 2