HomeSort by relevance Sort by last modified time
    Searched full:usertime (Results 1 - 25 of 50) sorted by null

1 2

  /external/lzma/CPP/7zip/UI/Common/
Bench.h 13 UInt64 UserTime;
Bench.cpp 354 FILETIME creationTime, exitTime, kernelTime, userTime;
361 , &creationTime, &exitTime, &kernelTime, &userTime) != 0)
362 return GetTime64(userTime) + GetTime64(kernelTime);
412 CUserTime UserTime;
423 BenchInfo.UserTime = 0;
424 UserTime.Init();
431 dest.UserTime = UserTime.GetUserTime();
497 UInt64 userTime = UserTime;
    [all...]
  /external/llvm/include/llvm/Support/
Timer.h 28 double UserTime; // User time elapsed
32 TimeRecord() : WallTime(0), UserTime(0), SystemTime(0), MemUsed(0) {}
40 double getProcessTime() const { return UserTime + SystemTime; }
41 double getUserTime() const { return UserTime; }
54 UserTime += RHS.UserTime;
60 UserTime -= RHS.UserTime;
  /external/netperf/src/
netcpu_ntperf.c 41 LARGE_INTEGER UserTime;
262 PerfCntrs->EndInfo[MAXCPUS].UserTime.QuadPart += PerfCntrs->EndInfo[i].UserTime.QuadPart;
298 DeltaInfo[i].UserTime.QuadPart = PerfCntrs->EndInfo[i].UserTime.QuadPart -
299 PerfCntrs->StartInfo[i].UserTime.QuadPart;
310 DeltaInfo[i].UserTime.QuadPart;
368 100.0*(double)DeltaInfo[MAXCPUS].UserTime.QuadPart/(double)TotalCPUTime[MAXCPUS].QuadPart);
375 100.0*(double)DeltaInfo[i].UserTime.QuadPart/TotalCPUTime[i].QuadPart); //Lint
  /prebuilts/go/darwin-x86/src/os/
exec_windows.go 33 e = syscall.GetProcessTimes(syscall.Handle(handle), &u.CreationTime, &u.ExitTime, &u.KernelTime, &u.UserTime)
116 func (p *ProcessState) userTime() time.Duration {
117 return ftToDuration(&p.rusage.UserTime)
exec_unix.go 75 func (p *ProcessState) userTime() time.Duration {
doc.go 54 // UserTime returns the user CPU time of the exited process and its children.
55 func (p *ProcessState) UserTime() time.Duration {
56 return p.userTime()
exec_plan9.go 124 func (p *ProcessState) userTime() time.Duration {
  /prebuilts/go/linux-x86/src/os/
exec_windows.go 33 e = syscall.GetProcessTimes(syscall.Handle(handle), &u.CreationTime, &u.ExitTime, &u.KernelTime, &u.UserTime)
116 func (p *ProcessState) userTime() time.Duration {
117 return ftToDuration(&p.rusage.UserTime)
exec_unix.go 75 func (p *ProcessState) userTime() time.Duration {
doc.go 54 // UserTime returns the user CPU time of the exited process and its children.
55 func (p *ProcessState) UserTime() time.Duration {
56 return p.userTime()
exec_plan9.go 124 func (p *ProcessState) userTime() time.Duration {
  /toolchain/binutils/binutils-2.25/gold/
TODO 11 Why is the usertime when we run with threads the same (or almost
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntcons.h 63 ULONG UserTime;
winternl.h 636 LARGE_INTEGER UserTime;
661 LARGE_INTEGER UserTime;
667 LARGE_INTEGER UserTime;
677 LARGE_INTEGER UserTime;
    [all...]
evntrace.h 314 ULONG UserTime;
350 ULONG UserTime;
  /external/ImageMagick/MagickCore/
timer.c 65 UserTime(void);
393 time_info->user.start=UserTime();
426 time_info->user.stop=UserTime();
449 % UserTime() returns the total time the process has been scheduled (in
452 % The format of the UserTime method is:
454 % double UserTime()
457 static double UserTime(void)
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 385 FILETIME CreationTime, ExitTime, KernelTime, UserTime;
391 &UserTime);
401 b.LowPart = UserTime.dwLowDateTime;
402 b.HighPart = UserTime.dwHighDateTime;
  /external/llvm/lib/Support/Windows/
Process.inc 100 FILETIME ProcCreate, ProcExit, KernelTime, UserTime;
102 &UserTime) == 0)
105 user_time = getTimeValueFromFILETIME(UserTime);
  /frameworks/base/core/java/com/android/internal/os/
ProcessCpuTracker.java 325 final long usertime = (sysCpu[0]+sysCpu[1]) * mJiffyMillis; local
337 if (true || (usertime >= mBaseUserTime && systemtime >= mBaseSystemTime
340 mRelUserTime = (int)(usertime - mBaseUserTime);
358 mBaseUserTime = usertime;
    [all...]
  /external/lzma/CPP/7zip/UI/Console/
Main.cpp 396 UInt64 userTime = GetTime64(userTimeFT);
401 PrintTime("User ", userTime, totalTime);
403 PrintTime("Process", kernelTime + userTime, totalTime);
  /system/extras/perfprofd/
perfprofdcore.cc 378 long unsigned usertime, nicetime, systime, idletime, iowaittime; local
382 &usertime, &nicetime, &systime, &idletime,
388 *remainingticks = usertime + nicetime + systime + iowaittime + irqtime + softirqtime;
  /external/v8/src/base/platform/
platform-win32.cc 430 uint64_t usertime; local
434 reinterpret_cast<FILETIME*>(&usertime))) return -1;
437 usertime /= 10;
440 *secs = static_cast<uint32_t>(usertime / 1000000);
441 *usecs = static_cast<uint32_t>(usertime % 1000000);
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/os/
exec.a 147 func (@"os".p·2 *@"os".ProcessState "esc:0x1") UserTime () (? @"time".Duration) { return @"os".p·2.@"os".userTime() }
153 func (@"os".p·2 *@"os".ProcessState "esc:0x1") @"os".userTime () (? @"time".Duration) { return @"time".Duration(@"os".p·2.@"os".rusage.Utime.Nano()) * @"time".Duration(0x1) }
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/os/
exec.a 148 func (@"os".p·2 *@"os".ProcessState "esc:0x1") UserTime () (? @"time".Duration) { return @"os".p·2.@"os".userTime() }
154 func (@"os".p·2 *@"os".ProcessState "esc:0x1") @"os".userTime () (? @"time".Duration) { return @"time".Duration(@"os".p·2.@"os".rusage.Utime.Nano()) * @"time".Duration(0x1) }
    [all...]

Completed in 1909 milliseconds

1 2