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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
systimes.py 127 return (d['UserTime'] / WIN32_PROCESS_TIMES_TICKS_PER_SECOND,
134 usertime = ctypes.c_ulonglong()
140 ctypes.byref(usertime))
143 return (usertime.value / WIN32_PROCESS_TIMES_TICKS_PER_SECOND,
  /external/python/cpython2/Tools/pybench/
systimes.py 127 return (d['UserTime'] / WIN32_PROCESS_TIMES_TICKS_PER_SECOND,
134 usertime = ctypes.c_ulonglong()
140 ctypes.byref(usertime))
143 return (usertime.value / WIN32_PROCESS_TIMES_TICKS_PER_SECOND,
  /external/python/cpython3/Tools/pybench/
systimes.py 130 return (d['UserTime'] / WIN32_PROCESS_TIMES_TICKS_PER_SECOND,
137 usertime = ctypes.c_ulonglong()
143 ctypes.byref(usertime))
146 return (usertime.value / WIN32_PROCESS_TIMES_TICKS_PER_SECOND,
  /external/ltp/utils/ffsb-6.0-rc2/
main.c 68 double totaltime = 0.0f, usertime = 0.0f, systime = 0.0f; local
223 usertime = (after_self.ru_utime.tv_sec +
229 usertime -= (before_self.ru_utime.tv_sec +
247 printf("%.1lf%% User Time\n", 100 * usertime / totaltime);
249 printf("%.1f%% CPU Utilization\n", 100 * (usertime + systime) /
  /external/v8/src/base/platform/
platform-win32.cc 429 uint64_t usertime; local
433 reinterpret_cast<FILETIME*>(&usertime))) return -1;
436 usertime /= 10;
439 *secs = static_cast<uint32_t>(usertime / 1000000);
440 *usecs = static_cast<uint32_t>(usertime % 1000000);
    [all...]
  /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;
  /frameworks/base/core/java/com/android/internal/os/
ProcessCpuTracker.java 326 final long usertime = (sysCpu[0]+sysCpu[1]) * mJiffyMillis; local
338 if (true || (usertime >= mBaseUserTime && systemtime >= mBaseSystemTime
341 mRelUserTime = (int)(usertime - mBaseUserTime);
359 mBaseUserTime = usertime;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 

Completed in 209 milliseconds