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

1 2 3 4 5

  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
timegm.c 61 * setting of tm_isdst when comparing tm values, causing the search to be
65 * portable code, I have to take care of tm_isdst in the comparison routine.
107 tmp->tm_isdst = 0;
109 if (okay || tmp->tm_isdst < 0)
Time.c 175 tmp->tm_isdst = 0;
351 if (yourtm.tm_isdst < 0 || mytm.tm_isdst == yourtm.tm_isdst)
370 if (sp->ttis[i].tt_isdst != yourtm.tm_isdst)
373 if (sp->ttis[j].tt_isdst == yourtm.tm_isdst)
380 if (mytm.tm_isdst != yourtm.tm_isdst)
433 if (tmp->tm_isdst > 1)
434 tmp->tm_isdst = 1;
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
2-1-buildonly.c 26 dst = t.tm_isdst;
  /external/syslinux/gpxe/src/include/
time.h 15 int tm_isdst; /* daylight saving time */ member in struct:tm
  /external/compiler-rt/test/msan/
mktime.cc 19 tm.tm_isdst = -1;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mktime/
1-1.c 30 tm_ptr.tm_isdst = -1;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/gmtime/
1-1.c 95 if ((tm_ptr->tm_isdst >= -1) && (tm_ptr->tm_isdst <= 1)) {
96 printf("isdst %02d\n", tm_ptr->tm_isdst);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
rstime.rs 36 rsDebug("tm.tm_isdst", tm.tm_isdst);
50 _RS_ASSERT(tm.tm_isdst == 0);
  /frameworks/rs/script_api/include/
rs_time.rsh 57 int tm_isdst; // Flag to indicate whether daylight saving time is in effect. The value is positive if it is in effect, zero if it is not, and negative if the information is not available.
  /prebuilts/sdk/renderscript/include/
rs_time.rsh 57 int tm_isdst; // Flag to indicate whether daylight saving time is in effect. The value is positive if it is in effect, zero if it is not, and negative if the information is not available.
  /frameworks/base/libs/androidfw/include/androidfw/
ZipUtils.h 81 timespec->tm_isdst = -1;
  /frameworks/base/libs/androidfw/tests/
ZipUtils_test.cpp 64 EXPECT_EQ(-1, t.tm_isdst);
  /external/toybox/toys/other/
hwclock.c 108 /* The value of tm_isdst is positive if daylight saving time is in effect,
111 tm.tm_isdst = 0;
121 if (tm.tm_isdst) tzone.tz_minuteswest -= 60;
  /bionic/libc/kernel/uapi/linux/
rtc.h 30 int tm_isdst; member in struct:rtc_time
  /device/linaro/bootloader/edk2/StdLib/Include/
time.h 30 - int tm_isdst; // Daylight Saving Time flag
32 The value of tm_isdst is positive if Daylight Saving Time is in effect, zero
150 int tm_isdst; // Daylight Saving Time flag member in struct:tm
342 characters if no time zone is determinable. [tm_isdst]
344 characters if no time zone is determinable. [tm_isdst]
  /external/kernel-headers/original/uapi/linux/
rtc.h 30 int tm_isdst; member in struct:rtc_time
  /external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
put1.pass.cpp 45 t.tm_isdst = 1;
  /external/libcxx/test/std/localization/locale.categories/category.time/locale.time.put.byname/
put1.pass.cpp 59 t.tm_isdst = 1;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
rtc.h 29 int tm_isdst; member in struct:rtc_time
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.time/locale.time.put/locale.time.put.members/
put1.pass.cpp 45 t.tm_isdst = 1;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.time/locale.time.put.byname/
put1.pass.cpp 59 t.tm_isdst = 1;
  /external/icu/icu4c/source/tools/tzcode/
zdump.c 278 (void) fprintf(stderr, " isdst=%d", tmp->tm_isdst);
615 newtm.tm_isdst != tm.tm_isdst)) {
629 newtm.tm_isdst != tm.tm_isdst ||
762 tm.tm_isdst == lotm.tm_isdst &&
821 (void) printf(" isdst=%d", tmp->tm_isdst);
838 if (tmp->tm_isdst != 0 && tmp->tm_isdst != 1
    [all...]
localtime.c 81 int tt_isdst; /* used to set tm_isdst */
    [all...]
  /bionic/libc/tzcode/
strftime.c 531 // "The value of tm_isdst shall be positive if Daylight Savings Time is
534 if (t->tm_isdst == 0) zone = tzname[0];
535 else if (t->tm_isdst > 0) zone = tzname[1];
545 if (t->tm_isdst >= 0)
546 pt = _add(tzname[t->tm_isdst != 0],
560 if (t->tm_isdst < 0)
568 ** tm_isdst. This requirement is
584 if (t->tm_isdst == 0)
localtime.c 101 bool tt_isdst; /* used to set tm_isdst */
    [all...]

Completed in 718 milliseconds

1 2 3 4 5