HomeSort by relevance Sort by last modified time
    Searched refs:tm_hour (Results 126 - 150 of 256) sorted by null

1 2 3 4 56 7 8 91011

  /external/libchrome/base/time/
time_exploded_posix.cc 161 exploded->hour = timestruct.tm_hour;
181 timestruct.tm_hour = exploded.hour;
  /external/pdfium/core/fxcrt/
fx_system.cpp 232 timeptr->tm_mday > 31 || timeptr->tm_hour < 0 || timeptr->tm_hour > 23 ||
cfx_datetime.cpp 108 utLocal.wHour = st.tm_hour;
  /external/pdfium/fpdfsdk/
cpdfsdk_datetime.cpp 102 m_hour = newtime->tm_hour;
124 newtime.tm_hour = m_hour;
303 st.wHour = static_cast<uint16_t>(pTime->tm_hour);
  /external/u-boot/drivers/rtc/
i2c_rtc_emul.c 132 plat->reg[REG_HOUR] = time.tm_hour;
149 time.tm_hour = plat->reg[REG_HOUR];
  /external/wpa_supplicant_8/src/utils/
os_win32.c 78 tm.tm_hour = hour;
112 tm->hour = tm2->tm_hour;
os_internal.c 71 tm.tm_hour = hour;
90 tm->hour = tm2->tm_hour;
  /frameworks/av/media/mtp/
MtpUtils.cpp 81 tm.tm_hour = hour;
98 tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec);
  /external/ipsec-tools/src/racoon/
backupsa.c 392 tm->tm_hour = str2num(p, len);
393 if (tm->tm_hour == -1 || tm->tm_hour > 24)
  /external/iptables/extensions/
libxt_time.c 143 tm.tm_hour = hour;
320 t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
324 t->tm_hour, t->tm_min, t->tm_sec);
  /external/zlib/src/contrib/minizip/
miniunz.c 105 newdate.tm_hour=tmu_date.tm_hour;
295 (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min,
zip.h 93 uInt tm_hour; /* hours since midnight - [0,23] */ member in struct:tm_zip_s
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
timemodule.c 222 {"tm_hour", "hours, range [0, 23]"},
259 SET(3, p->tm_hour);
326 "gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min,\n\
342 "localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min,\n\
358 &p->tm_hour,
426 - tm_hour: [0, 23]
449 if (buf.tm_hour < 0 || buf.tm_hour > 23) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timemodule.c 222 {"tm_hour", "hours, range [0, 23]"},
259 SET(3, p->tm_hour);
326 "gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min,\n\
342 "localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min,\n\
358 &p->tm_hour,
426 - tm_hour: [0, 23]
449 if (buf.tm_hour < 0 || buf.tm_hour > 23) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/SetStamp/
SetStamp.c 136 &stime.tm_hour,
  /external/strace/tests/
ioctl_rtc.c 45 printf("{tm_sec=%d, tm_min=%d, tm_hour=%d"
47 rt->tm_sec, rt->tm_min, rt->tm_hour,
  /external/strace/tests-m32/
ioctl_rtc.c 45 printf("{tm_sec=%d, tm_min=%d, tm_hour=%d"
47 rt->tm_sec, rt->tm_min, rt->tm_hour,
  /external/strace/tests-mx32/
ioctl_rtc.c 45 printf("{tm_sec=%d, tm_min=%d, tm_hour=%d"
47 rt->tm_sec, rt->tm_min, rt->tm_hour,
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
Chrono.cpp 40 TM.tm_hour = 15;
  /external/wpa_supplicant_8/hs20/server/
hs20_spp_server.c 29 tm->tm_hour, tm->tm_min, tm->tm_sec);
  /external/e2fsprogs/e2fsck/
logfile.c 106 sprintf(buf, "%02d", tm->tm_hour);
132 sprintf(buf, "%02d%02d%02d", tm->tm_hour, tm->tm_min,
  /external/lua/src/
loslib.c 216 setfield(L, "hour", stm->tm_hour);
335 ts.tm_hour = getfield(L, "hour", 12, 0);
  /external/icu/icu4c/source/tools/tzcode/
zdump.c 275 (void) fprintf(stderr, " hour=%d", tmp->tm_hour);
791 result += newp->tm_hour - oldp->tm_hour;
906 timeptr->tm_mday, timeptr->tm_hour,
1007 fprintf(fp, "%02d:%02d:%02d", loc.tm_hour, loc.tm_min, loc.tm_sec);
  /external/python/cpython3/Modules/
timemodule.c 386 {"tm_hour", "hours, range [0, 23]"},
430 SET(3, p->tm_hour);
503 return p->tm_sec + p->tm_min*60 + p->tm_hour*3600 + p->tm_yday*86400 +
510 "gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min,\n\
544 "localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min,\n\
568 &p->tm_hour, &p->tm_min, &p->tm_sec,
615 - tm_hour: [0, 23]
638 if (buf->tm_hour < 0 || buf->tm_hour > 23) {
908 timeptr->tm_mday, timeptr->tm_hour,
    [all...]
  /external/zlib/src/contrib/untgz/
untgz.c 199 local->tm_hour, local->tm_min, local->tm_sec);
224 st.wHour = (WORD)loctm->tm_hour;

Completed in 954 milliseconds

1 2 3 4 56 7 8 91011