/external/valgrind/callgrind/tests/ |
threads-use.vgtest | 2 vgopts: --separate-threads=yes --cacheuse=yes --collect-bus=yes --collect-systime=yes
|
threads-use.stderr.exp | 3 Events : Ir Dr Dw I1mr D1mr D1mw ILmr DLmr DLmw AcCost1 SpLoss1 AcCost2 SpLoss2 Ge sysCount sysTime
|
/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/linux-kselftest/tools/testing/selftests/rcutorture/bin/ |
jitter.sh | 39 starttime=`awk 'BEGIN { print systime(); }' < /dev/null` 44 t=`awk -v s=$starttime 'BEGIN { print systime() - s; }' < /dev/null` 55 srand(n + me + systime()); 72 srand(n + me + systime()); 80 srand(n + me + systime());
|
kvm-test-1-run.sh | 144 kstarttime=`awk 'BEGIN { print systime() }' < /dev/null` 200 kruntime=`awk 'BEGIN { print systime() - '"$kstarttime"' }' < /dev/null` 236 kruntime=`awk 'BEGIN { print systime() - '"$kstarttime"' }' < /dev/null`
|
/external/libchrome/base/time/ |
time_posix.cc | 42 // Define a system-specific SysTime that wraps either to a time_t or 46 typedef time64_t SysTime; 48 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) { 56 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) { 65 typedef time_t SysTime; 67 SysTime SysTimeFromTimeStruct(struct tm* timestruct, bool is_local) { 75 void SysTimeToTimeStruct(SysTime t, struct tm* timestruct, bool is_local) { 198 SysTime seconds; // Seconds since epoch. 256 SysTime seconds; 311 // On Android, SysTime is int64_t, special care must be taken to avoi [all...] |
/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/curl/docs/examples/ |
synctime.c | 121 SYSTEMTIME SYSTime; 156 TmpStr1, &SYSTime.wDay, TmpStr2, &SYSTime.wYear, 157 &SYSTime.wHour, &SYSTime.wMinute, &SYSTime.wSecond); 160 SYSTime.wMilliseconds = 500; /* adjust to midpoint, 0.5 sec */ 163 SYSTime.wMonth = i + 1; 324 GetSystemTime(&SYSTime); 349 if(!SetSystemTime(&SYSTime)) { /* Set system time * [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) /
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
AudioOutputDescriptor.cpp | 104 nsecs_t sysTime = 0; 106 sysTime = systemTime(); 112 if (isStreamActive((audio_stream_type_t)i, inPastMs, sysTime)) { 121 nsecs_t sysTime) const 129 if (sysTime == 0) { 130 sysTime = systemTime(); 132 if (ns2ms(sysTime - mStopTime[stream]) < inPastMs) { 596 nsecs_t sysTime = systemTime(); 599 if (outputDesc->isStreamActive(stream, inPastMs, sysTime)) { 608 nsecs_t sysTime = systemTime() [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/pdfium/fpdfsdk/ |
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;
|
cpdfsdk_baannot.cpp | 140 FX_SYSTEMTIME systime; local 143 dt.ToSystemTime(systime); 144 return systime;
|
/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...] |
/prebuilts/go/darwin-x86/src/runtime/ |
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
|
sys_darwin_386.s | 167 JNZ systime 174 JZ systime 239 systime: label
|
/prebuilts/go/linux-x86/src/runtime/ |
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
|
sys_darwin_386.s | 167 JNZ systime 174 JZ systime 239 systime: label
|
/external/autotest/client/tests/unixbench/ |
unixbench.py | 32 vars += ' systime=%i looper=%i seconds=%i'\
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
AudioOutputDescriptor.h | 67 nsecs_t sysTime = 0) const;
|
/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;
|
/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/valgrind/callgrind/ |
clo.c | 528 else if VG_BOOL_CLO(arg, "--collect-systime", CLG_(clo).collect_systime) {} 585 " --collect-systime=no|yes Collect system call time info? [no]\n"
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
AudioPolicyManagerBase.h | 268 nsecs_t sysTime = 0) const; 271 nsecs_t sysTime = 0) const;
|