HomeSort by relevance Sort by last modified time
    Searched refs:tm_hour (Results 151 - 175 of 289) sorted by null

1 2 3 4 5 67 8 91011>>

  /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 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;
  /external/qemu/hw/
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 =
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,
  /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/WebKit/Source/wtf/
GregorianDateTime.h 86 ret.tm_hour = m_hour;
  /external/chromium_org/third_party/icu/source/test/compat/
tzdate.c 122 ts.tm_hour = hour;
  /external/icu4c/test/compat/
tzdate.c 122 ts.tm_hour = hour;
  /frameworks/base/include/androidfw/
ZipFileRO.h 186 timespec->tm_hour = (when >> 11) & 0x1F;
  /system/core/toolbox/
date.c 30 tm.tm_hour = hour / 10000;
touch.c 34 tm.tm_hour = hour / 10000;
  /external/e2fsprogs/debugfs/
util.c 226 &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec);
230 ts.tm_mday < 0 || ts.tm_mday > 31 || ts.tm_hour > 23 ||
  /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 140 tm.tm_hour = hour;
314 t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec);
318 t->tm_hour, t->tm_min, t->tm_sec);
  /dalvik/vm/
SignalCatcher.cpp 120 ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
metered_stream.py 102 msg = '%02d:%02d:%02d.%03d %d %s' % (now_tuple.tm_hour, now_tuple.tm_min, now_tuple.tm_sec, int((now * 1000) % 1000), pid, self._ensure_newline(txt))

Completed in 397 milliseconds

1 2 3 4 5 67 8 91011>>