HomeSort by relevance Sort by last modified time
    Searched refs:systime (Results 1 - 15 of 15) sorted by null

  /external/icu/icu4c/source/test/compat/
tzdate.c 34 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
36 void printTime(char* systime, char* icutime);
39 char systime[SIZE]; local
63 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
67 if (strcmp(systime, icutime) != 0) {
69 printTime(systime, icutime);
111 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
132 strftime(systime, sizeof(char) * 80, "%Y%m%d %I:%M %p", &ts);
137 void printTime(char* systime, char* icutime) {
138 printf("System Time: %s\n", systime);
    [all...]
  /external/ltp/utils/ffsb-6.0-rc2/
main.c 68 double totaltime = 0.0f, usertime = 0.0f, systime = 0.0f; local
235 systime = (after_self.ru_stime.tv_sec +
241 systime -= (before_self.ru_stime.tv_sec +
248 printf("%.1lf%% System Time\n", 100 * systime / totaltime);
249 printf("%.1f%% CPU Utilization\n", 100 * (usertime + systime) /
  /external/autotest/client/tests/btreplay/
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/
cpdfsdk_baannot.cpp 140 FX_SYSTEMTIME systime; local
143 dt.ToSystemTime(systime);
144 return systime;
cpdfsdk_formfillenvironment.cpp 275 FPDF_SYSTEMTIME systime = m_pInfo->FFI_GetLocalTime(m_pInfo);
276 fxtime.wDay = systime.wDay;
277 fxtime.wDayOfWeek = systime.wDayOfWeek;
278 fxtime.wHour = systime.wHour;
279 fxtime.wMilliseconds = systime.wMilliseconds;
280 fxtime.wMinute = systime.wMinute;
281 fxtime.wMonth = systime.wMonth;
282 fxtime.wSecond = systime.wSecond;
283 fxtime.wYear = systime.wYear;
  /external/libcups/cups/
tls-sspi.c 300 SYSTEMTIME systime; /* System time */ local
303 FileTimeToSystemTime(&(cert->pCertInfo->NotAfter), &systime);
305 tm.tm_year = systime.wYear - 1900;
306 tm.tm_mon = systime.wMonth - 1;
307 tm.tm_mday = systime.wDay;
308 tm.tm_hour = systime.wHour;
309 tm.tm_min = systime.wMinute;
310 tm.tm_sec = systime.wSecond;
351 SYSTEMTIME systime; /* System time */ local
357 FileTimeToSystemTime(&(cert->pCertInfo->NotAfter), &systime);
    [all...]
  /external/fio/os/windows/
posix.c 241 SYSTEMTIME systime; local
245 Time_tToSystemTime(*t, &systime);
247 StringCchPrintfA(buf, 31, "%s %s %d %02d:%02d:%02d %04d\n", dayOfWeek[systime.wDayOfWeek % 7], monthOfYear[(systime.wMonth - 1) % 12],
248 systime.wDay, systime.wHour, systime.wMinute, systime.wSecond, systime.wYear);
  /external/mksh/src/
jobs.c 94 struct timeval systime; /* system time used by job */ member in struct:job
499 timerclear(&j->systime);
1257 j_systime = j->systime;
    [all...]
funcs.c 2374 struct timeval usrtime, systime, tv0, tv1; local
    [all...]
  /external/libusb/libusb/
io.c 2000 struct timeval systime; local
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
sys_darwin_386.s 167 JNZ systime
174 JZ systime
239 systime: label
sys_darwin_amd64.s 171 // are used in the systime fallback, as the timeval address
224 JZ systime
227 JB systime
279 JZ systime
299 systime: label
  /prebuilts/go/linux-x86/src/runtime/
sys_darwin_386.s 167 JNZ systime
174 JZ systime
239 systime: label
sys_darwin_amd64.s 171 // are used in the systime fallback, as the timeval address
224 JZ systime
227 JB systime
279 JZ systime
299 systime: label
  /system/extras/perfprofd/
perfprofdcore.cc 322 long unsigned usertime, nicetime, systime, idletime, iowaittime; local
326 &usertime, &nicetime, &systime, &idletime,
332 *remainingticks = usertime + nicetime + systime + iowaittime + irqtime + softirqtime;

Completed in 496 milliseconds