/external/chromium/base/third_party/nspr/ |
D | prtime.cc | 113 st.wSecond = exploded->tm_sec; in PR_ImplodeTime() 139 gregorian_date.second = exploded->tm_sec; in PR_ImplodeTime() 155 exp_tm.tm_sec = exploded->tm_sec; in PR_ImplodeTime() 169 exploded->tm_min == 59 && exploded->tm_sec == 59)) { in PR_ImplodeTime() 259 time->tm_sec += secOffset; in ApplySecOffset() 262 if (time->tm_sec < 0 || time->tm_sec >= 60) { in ApplySecOffset() 263 time->tm_min += time->tm_sec / 60; in ApplySecOffset() 264 time->tm_sec %= 60; in ApplySecOffset() 265 if (time->tm_sec < 0) { in ApplySecOffset() 266 time->tm_sec += 60; in ApplySecOffset() [all …]
|
D | prtime.h | 125 PRInt32 tm_sec; /* seconds past tm_min (0-61, accomodating member
|
/external/openssl/crypto/ |
D | o_time.c | 202 result->tm_sec = time_values.second; in OPENSSL_gmtime() 249 offset_hms += tm->tm_hour * 3600 + tm->tm_min * 60 + tm->tm_sec; in OPENSSL_gmtime_adj() 292 tm->tm_sec = offset_hms % 60; in OPENSSL_gmtime_adj() 360 (tm1.tm_sec == tm2.tm_sec)) in check_time() 365 tm2.tm_hour, tm2.tm_min, tm2.tm_sec); in check_time() 368 tm1.tm_hour, tm1.tm_min, tm1.tm_sec); in check_time()
|
/external/stlport/test/unit/ |
D | time_facets_test.cpp | 88 CPPUNIT_ASSERT( yet_more.tm_sec != xmas.tm_sec ); in _time_put_get() 101 CPPUNIT_ASSERT( yet_more.tm_sec == xmas.tm_sec ); in _time_put_get() 171 CPPUNIT_ASSERT( yet_more.tm_sec != xmas.tm_sec ); in _time_put_get() 184 CPPUNIT_ASSERT( yet_more.tm_sec == xmas.tm_sec ); in _time_put_get()
|
/external/qemu/hw/ |
D | mc146818rtc.c | 289 tm->tm_sec = rtc_from_bcd(s, s->cmos_data[RTC_SECONDS]); in rtc_set_time() 307 s->cmos_data[RTC_SECONDS] = rtc_to_bcd(s, tm->tm_sec); in rtc_copy_date() 349 tm->tm_sec++; in rtc_next_second() 350 if ((unsigned)tm->tm_sec >= 60) { in rtc_next_second() 351 tm->tm_sec = 0; in rtc_next_second() 418 s->cmos_data[RTC_SECONDS_ALARM] == s->current_tm.tm_sec) && in rtc_update_second2() 516 qemu_put_be32(f, s->current_tm.tm_sec); in rtc_save() 542 s->current_tm.tm_sec=qemu_get_be32(f); in rtc_load()
|
/external/webrtc/src/system_wrappers/source/ |
D | trace_posix.cc | 93 systemTime.tm_min, systemTime.tm_sec, 0, in AddTime() 112 systemTime.tm_min, systemTime.tm_sec, 0, in AddTime()
|
/external/openssl/crypto/asn1/ |
D | a_utctm.c | 233 ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec); in ASN1_UTCTIME_adj() 274 return_cmp(g2(s->data+10), tm->tm_sec); in ASN1_UTCTIME_cmp_time_t() 298 tm.tm_sec=g2(s->data+10);
|
/external/icu4c/tools/tzcode/ |
D | localtime.c | 1552 tmp->tm_sec = (int) (rem % SECSPERMIN) + hit; 1670 result = atmp->tm_sec - btmp->tm_sec; 1697 if (normalize_overflow(&yourtm.tm_min, &yourtm.tm_sec, 1742 if (yourtm.tm_sec >= 0 && yourtm.tm_sec < SECSPERMIN) 1753 if (increment_overflow(&yourtm.tm_sec, 1 - SECSPERMIN)) 1755 saved_seconds = yourtm.tm_sec; 1756 yourtm.tm_sec = SECSPERMIN - 1; 1758 saved_seconds = yourtm.tm_sec; 1759 yourtm.tm_sec = 0; 1935 tmp->tm_sec += sp->ttis[otheri].tt_gmtoff - [all …]
|
D | asctime.c | 114 timeptr->tm_min, timeptr->tm_sec,
|
D | zdump.c | 212 (void) fprintf(stderr, " sec=%d", tmp->tm_sec); 738 result += newp->tm_sec - oldp->tm_sec; 851 timeptr->tm_min, timeptr->tm_sec); 951 fprintf(fp, "%02d:%02d:%02d", loc.tm_hour, loc.tm_min, loc.tm_sec); in dumptimeICU()
|
/external/chromium/base/ |
D | time_posix.cc | 96 exploded->second = timestruct.tm_sec; in Explode() 103 timestruct.tm_sec = exploded.second; in FromExploded()
|
/external/wpa_supplicant_8/src/utils/ |
D | os_win32.c | 68 tm.tm_sec = sec; in os_mktime() 98 tm->sec = tm2->tm_sec; in os_gmtime()
|
D | os_internal.c | 60 tm.tm_sec = sec; in os_mktime() 75 tm->sec = tm2->tm_sec; in os_gmtime()
|
D | os_unix.c | 81 tm.tm_sec = sec; in os_mktime() 111 tm->sec = tm2->tm_sec; in os_gmtime()
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | DateMath.h | 142 : second(inTm.tm_sec) in GregorianDateTime() 173 ret.tm_sec = second; in tm()
|
/external/ipsec-tools/src/racoon/ |
D | backupsa.c | 410 tm->tm_sec = str2num(p, len); in str2tmx() 411 if (tm->tm_sec == -1 || tm->tm_sec > 60) in str2tmx()
|
/external/zlib/src/contrib/minizip/ |
D | minizip.c | 130 tmzip->tm_sec = filedate->tm_sec; 406 zi.tmz_date.tm_sec = zi.tmz_date.tm_min = zi.tmz_date.tm_hour =
|
/external/skia/src/ports/ |
D | SkTime_Unix.cpp | 30 dt->fSecond = SkToU8(tstruct->tm_sec); in GetDateTime()
|
/external/iptables/extensions/ |
D | libxt_time.c | 142 tm.tm_sec = second; in time_parse_date() 314 t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec); in time_print_date() 318 t->tm_hour, t->tm_min, t->tm_sec); in time_print_date()
|
/external/e2fsprogs/debugfs/ |
D | util.c | 226 &ts.tm_mday, &ts.tm_hour, &ts.tm_min, &ts.tm_sec); in string_to_time() 231 ts.tm_min > 59 || ts.tm_sec > 61) in string_to_time()
|
/external/skia/src/animator/ |
D | SkTime.cpp | 63 t->fSecond = SkToU8(syst.tm_sec); in GetDateTime()
|
/external/libnfc-nci/src/adaptation/ |
D | bte_logmsg.c | 64 sprintf(buffer, "%02d:%02d:%02d.%03d ", tm->tm_hour, tm->tm_min, tm->tm_sec, in LogMsg() 98 sprintf(buffer, "%02d:%02d:%02d.%03d ", tm->tm_hour, tm->tm_min, tm->tm_sec, in ScrLog()
|
/external/bluetooth/bluedroid/main/ |
D | bte_logmsg.c | 235 sprintf(buffer, "%02d:%02d:%02d.%03d ", tm->tm_hour, tm->tm_min, tm->tm_sec, in LogMsg() 290 sprintf(buffer, "%02d:%02d:%02d.%03ld ", tm->tm_hour, tm->tm_min, tm->tm_sec, in ScrLog()
|
/external/stlport/stlport/stl/config/ |
D | _evc.h | 282 int tm_sec; /* seconds after the minute - [0,59] */ member
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
D | os_win32.c | 73 tm.tm_sec = sec; in os_mktime()
|