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

  /art/runtime/
barrier.cc 71 int64_t time_left = abs_timeout - now; local
72 if (time_left <= 0) return;
73 timeout_ns = time_left % (1000*1000);
74 timeout_ms = time_left / (1000*1000);
  /external/chromium_org/remoting/host/installer/linux/debian/
chrome-remote-desktop.init 36 local time_left=10
37 while [ $time_left -gt 0 ]; do
40 time_left=$((time_left - 1))
  /external/chromium_org/chrome/browser/chromeos/login/screens/
update_screen.cc 425 double time_left = work_left / download_average_speed_; local
426 // |time_left| may be large enough or even +infinity. So we must
428 time_left = std::min(time_left, kMaxTimeLeft);
432 base::TimeDelta::FromSeconds(static_cast<int64>(time_left)));
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
rtp_player.cc 410 int64_t time_left = (next_rtp_time_ - first_packet_rtp_time_) - local
412 if (time_left < 0) {
415 return static_cast<uint32_t>(time_left);
  /external/chromium_org/third_party/webrtc/video/
video_send_stream_tests.cc 943 int64_t time_left = stop_time - now; local
    [all...]

Completed in 711 milliseconds