HomeSort by relevance Sort by last modified time
    Searched refs:tm_hour (Results 201 - 225 of 364) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
time.h 48 int tm_hour; /* hours */ member in struct:tm
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_utctm.c 233 ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec);
272 return_cmp(g2(s->data+6), tm->tm_hour);
296 tm.tm_hour=g2(s->data+6);
  /external/openssl/crypto/asn1/
a_utctm.c 233 ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec);
272 return_cmp(g2(s->data+6), tm->tm_hour);
296 tm.tm_hour=g2(s->data+6);
  /system/core/toolbox/
date.c 64 rtc.tm_hour = tm->tm_hour;
105 tm.tm_hour = hour / 10000;
touch.c 34 tm.tm_hour = hour / 10000;
  /external/stlport/stlport/stl/
_time_facets.c 199 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
235 if (__index == 1 && __t->tm_hour != 12 )
236 __t->tm_hour += 12;
237 if (__index == 0 && __t->tm_hour == 12 )
238 __t->tm_hour = 0;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_time_facets.c 199 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
235 if (__index == 1 && __t->tm_hour != 12 )
236 __t->tm_hour += 12;
237 if (__index == 0 && __t->tm_hour == 12 )
238 __t->tm_hour = 0;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_time_facets.c 200 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
236 if (__index == 1 && __t->tm_hour != 12 )
237 __t->tm_hour += 12;
238 if (__index == 0 && __t->tm_hour == 12 )
239 __t->tm_hour = 0;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_time_facets.c 200 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
236 if (__index == 1 && __t->tm_hour != 12 )
237 __t->tm_hour += 12;
238 if (__index == 0 && __t->tm_hour == 12 )
239 __t->tm_hour = 0;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_time_facets.c 200 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
236 if (__index == 1 && __t->tm_hour != 12 )
237 __t->tm_hour += 12;
238 if (__index == 0 && __t->tm_hour == 12 )
239 __t->tm_hour = 0;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_time_facets.c 200 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
236 if (__index == 1 && __t->tm_hour != 12 )
237 __t->tm_hour += 12;
238 if (__index == 0 && __t->tm_hour == 12 )
239 __t->tm_hour = 0;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_time_facets.c 199 bool __pr = __get_decimal_integer(__first, __last, __t->tm_hour, __STATIC_CAST(_Ch*, 0));
235 if (__index == 1 && __t->tm_hour != 12 )
236 __t->tm_hour += 12;
237 if (__index == 0 && __t->tm_hour == 12 )
238 __t->tm_hour = 0;
  /external/qemu/hw/timer/
mc146818rtc.c 291 tm->tm_hour = rtc_from_bcd(s, s->cmos_data[RTC_HOURS] & 0x7f);
294 tm->tm_hour += 12;
311 s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, tm->tm_hour);
314 s->cmos_data[RTC_HOURS] = rtc_to_bcd(s, tm->tm_hour % 12);
315 if (tm->tm_hour >= 12)
355 tm->tm_hour++;
356 if ((unsigned)tm->tm_hour >= 24) {
357 tm->tm_hour = 0;
422 s->cmos_data[RTC_HOURS_ALARM] == s->current_tm.tm_hour)) {
518 qemu_put_be32(f, s->current_tm.tm_hour);
    [all...]
  /external/stlport/src/
time_facets.cpp 253 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)t->tm_hour);
254 __append(buf, _buf, ((long)t->tm_hour < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct);
258 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)__hour12(t->tm_hour));
259 __append(buf, _buf, ((long)__hour12(t->tm_hour) < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct);
278 __append(buf, table._M_am_pm[t->tm_hour / 12]);
352 _STLP_SPRINTF(_buf, "%2ld", (long)t->tm_hour);
357 _STLP_SPRINTF(_buf, "%2ld", (long)t->tm_hour % 12);
  /ndk/sources/cxx-stl/stlport/src/
time_facets.cpp 253 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)t->tm_hour);
254 __append(buf, _buf, ((long)t->tm_hour < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct);
258 _STLP_SPRINTF(_buf, (modifier != '#') ? "%.2ld" : "%ld", (long)__hour12(t->tm_hour));
259 __append(buf, _buf, ((long)__hour12(t->tm_hour) < 10L && modifier == '#') ? _buf + 1 : _buf + 2, ct);
278 __append(buf, table._M_am_pm[t->tm_hour / 12]);
352 _STLP_SPRINTF(_buf, "%2ld", (long)t->tm_hour);
357 _STLP_SPRINTF(_buf, "%2ld", (long)t->tm_hour % 12);
  /external/chromium_org/third_party/zlib/contrib/minizip/
minizip.c 119 tmzip->tm_hour = filedate->tm_hour;
393 zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour =
miniunz.c 92 newdate.tm_hour=tmu_date.tm_hour;
282 (uLong)file_info.tmu_date.tm_hour,(uLong)file_info.tmu_date.tm_min,
  /external/zlib/src/contrib/minizip/
minizip.c 132 tmzip->tm_hour = filedate->tm_hour;
406 zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour =
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 60 tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec) != 0) {
  /external/chromium_org/media/cdm/ppapi/
cdm_logging.cc 113 << std::setw(2) << tm_time->tm_hour
  /external/chromium_org/third_party/icu/source/test/compat/
tzdate.c 122 ts.tm_hour = hour;
  /external/icu/icu4c/source/test/compat/
tzdate.c 122 ts.tm_hour = hour;
  /external/chromium_org/third_party/skia/third_party/lua/src/
loslib.c 211 setfield(L, "hour", stm->tm_hour);
251 ts.tm_hour = getfield(L, "hour", 12);
  /external/e2fsprogs/debugfs/
util.c 234 &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec);
238 ts.tm_mday < 0 || ts.tm_mday > 31 || ts.tm_hour > 23 ||
  /external/wpa_supplicant_8/src/utils/
os_win32.c 77 tm.tm_hour = hour;
111 tm->hour = tm2->tm_hour;

Completed in 2211 milliseconds

1 2 3 4 5 6 7 891011>>