HomeSort by relevance Sort by last modified time
    Searched defs:time_delta (Results 1 - 3 of 3) 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);
  /external/replicaisland/src/com/replica/replicaisland/
GameRenderer.java 182 long time_delta = (time - mLastTime); local
240 mProfileFrameTime += time_delta;

Completed in 556 milliseconds