/external/icu/icu4c/source/test/compat/ |
D | tzdate.c | 34 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int… 36 void printTime(char* systime, char* icutime); 39 char systime[SIZE]; in main() local 63 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime); in main() 67 if (strcmp(systime, icutime) != 0) { in main() 69 printTime(systime, icutime); in main() 111 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int… in getSystemCurrentTime() argument 132 strftime(systime, sizeof(char) * 80, "%Y%m%d %I:%M %p", &ts); in getSystemCurrentTime() 137 void printTime(char* systime, char* icutime) { in printTime() argument 138 printf("System Time: %s\n", systime); in printTime()
|
/external/ltp/utils/ffsb-6.0-rc2/ |
D | main.c | 68 double totaltime = 0.0f, usertime = 0.0f, systime = 0.0f; in main() local 235 systime = (after_self.ru_stime.tv_sec + in main() 241 systime -= (before_self.ru_stime.tv_sec + in main() 248 printf("%.1lf%% System Time\n", 100 * systime / totaltime); in main() 249 printf("%.1f%% CPU Utilization\n", 100 * (usertime + systime) / in main()
|
/external/autotest/client/tests/btreplay/ |
D | btreplay.py | 98 systime = 0.0 101 systime += float(s[i]) * (60**n) 116 self.write_perf_keyval({'time':elapsed, 'systime':systime,
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_formfillenvironment.cpp | 275 FPDF_SYSTEMTIME systime = m_pInfo->FFI_GetLocalTime(m_pInfo); in GetLocalTime() local 276 fxtime.wDay = systime.wDay; in GetLocalTime() 277 fxtime.wDayOfWeek = systime.wDayOfWeek; in GetLocalTime() 278 fxtime.wHour = systime.wHour; in GetLocalTime() 279 fxtime.wMilliseconds = systime.wMilliseconds; in GetLocalTime() 280 fxtime.wMinute = systime.wMinute; in GetLocalTime() 281 fxtime.wMonth = systime.wMonth; in GetLocalTime() 282 fxtime.wSecond = systime.wSecond; in GetLocalTime() 283 fxtime.wYear = systime.wYear; in GetLocalTime()
|
D | cpdfsdk_baannot.cpp | 140 FX_SYSTEMTIME systime; in GetModifiedDate() local 143 dt.ToSystemTime(systime); in GetModifiedDate() 144 return systime; in GetModifiedDate()
|
/external/libcups/cups/ |
D | tls-sspi.c | 300 SYSTEMTIME systime; /* System time */ in httpCredentialsGetExpiration() local 303 FileTimeToSystemTime(&(cert->pCertInfo->NotAfter), &systime); in httpCredentialsGetExpiration() 305 tm.tm_year = systime.wYear - 1900; in httpCredentialsGetExpiration() 306 tm.tm_mon = systime.wMonth - 1; in httpCredentialsGetExpiration() 307 tm.tm_mday = systime.wDay; in httpCredentialsGetExpiration() 308 tm.tm_hour = systime.wHour; in httpCredentialsGetExpiration() 309 tm.tm_min = systime.wMinute; in httpCredentialsGetExpiration() 310 tm.tm_sec = systime.wSecond; in httpCredentialsGetExpiration() 351 SYSTEMTIME systime; /* System time */ in httpCredentialsString() local 357 FileTimeToSystemTime(&(cert->pCertInfo->NotAfter), &systime); in httpCredentialsString() [all …]
|
/external/libusb/libusb/ |
D | io.c | 2000 struct timeval systime; in handle_timeouts_locked() local 2011 TIMESPEC_TO_TIMEVAL(&systime, &systime_ts); in handle_timeouts_locked() 2027 if ((cur_tv->tv_sec > systime.tv_sec) || in handle_timeouts_locked() 2028 (cur_tv->tv_sec == systime.tv_sec && in handle_timeouts_locked() 2029 cur_tv->tv_usec > systime.tv_usec)) in handle_timeouts_locked()
|
/external/mksh/src/ |
D | jobs.c | 94 struct timeval systime; /* system time used by job */ member 493 timerclear(&j->systime); in exchild() 1251 j_systime = j->systime; in j_waitj() 1388 timeradd(&j->systime, &ru1.ru_stime, &j->systime); in j_sigchld() 1389 timersub(&j->systime, &ru0.ru_stime, &j->systime); in j_sigchld()
|
D | funcs.c | 2374 struct timeval usrtime, systime, tv0, tv1; in timex() local 2403 timeradd(&ru0.ru_stime, &cru0.ru_stime, &systime); in timex() 2407 timersub(&ru1.ru_stime, &ru0.ru_stime, &systime); in timex() 2408 timeradd(&systime, &j_systime, &systime); in timex() 2427 p_time(shl_out, true, systime.tv_sec, systime.tv_usec, in timex() 2430 p_time(shl_out, false, systime.tv_sec, systime.tv_usec, in timex()
|