OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:time_delta
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/
process_util_linux.cc
451
int64
time_delta
= time - last_time_;
local
452
DCHECK_NE(
time_delta
, 0);
453
if (
time_delta
== 0)
462
(kHertz * TimeDelta::FromMicroseconds(
time_delta
).InSecondsF());
process_util_win.cc
772
int64
time_delta
= time - last_time_;
local
773
DCHECK(
time_delta
!= 0);
774
if (
time_delta
== 0)
777
// We add
time_delta
/ 2 so the result is rounded.
778
int cpu = static_cast<int>((system_time_delta * 100 +
time_delta
/ 2) /
779
time_delta
);
Completed in 197 milliseconds