Searched defs:now (Results 126 - 150 of 760) sorted by relevance

1234567891011>>

/external/chromium_org/media/filters/
H A Dvideo_frame_scheduler_impl.cc61 base::TimeTicks now = tick_clock_->NowTicks(); local
65 while (!pending_frames_.empty() && pending_frames_.top().wall_ticks <= now) {
/external/chromium_org/mojo/examples/sample_app/
H A Dgles2_client_impl.cc129 MojoTimeTicks now = mojo::GetTimeTicksNow(); local
130 MojoTimeTicks offset = now - last_time_;
132 last_time_ = now;
/external/chromium_org/net/base/
H A Dbackoff_entry.cc65 base::TimeTicks now = ImplGetTimeNow(); local
66 if (exponential_backoff_release_time_ <= now)
68 return exponential_backoff_release_time_ - now;
83 base::TimeTicks now = ImplGetTimeNow();
86 (now - exponential_backoff_release_time_).InMilliseconds();
88 // Release time is further than now, we are managing it.
/external/chromium_org/net/cert/
H A Dx509_util_openssl_unittest.cc91 base::Time now = base::Time::Now(); local
92 EXPECT_TRUE(x509_util::IsSupportedValidityRange(now, now));
94 now, now - base::TimeDelta::FromSeconds(1)));
109 EXPECT_FALSE(x509_util::IsSupportedValidityRange(too_old, now));
111 EXPECT_FALSE(x509_util::IsSupportedValidityRange(now, too_late));
118 base::Time now = base::Time::Now(); local
128 now,
129 now
[all...]
/external/chromium_org/net/dns/
H A Dhost_cache.cc44 base::TimeTicks now) {
49 return entries_.Get(key, now);
54 base::TimeTicks now,
60 entries_.Put(key, entry, now, now + ttl);
105 const base::TimeTicks& now,
108 DCHECK(now >= expiration);
109 UMA_HISTOGRAM_CUSTOM_TIMES("DNS.CacheExpiredOnGet", now - expiration,
113 if (expiration > now) {
114 UMA_HISTOGRAM_CUSTOM_TIMES("DNS.CacheEvicted", expiration - now,
43 Lookup(const Key& key, base::TimeTicks now) argument
52 Set(const Key& key, const Entry& entry, base::TimeTicks now, base::TimeDelta ttl) argument
101 Handle( const Key& key, const Entry& entry, const base::TimeTicks& expiration, const base::TimeTicks& now, bool on_get) const argument
[all...]
/external/chromium_org/net/quic/congestion_control/
H A Drtt_stats.cc55 QuicTime now) {
79 UpdateRecentMinRtt(rtt_sample, now);
96 void RttStats::UpdateRecentMinRtt(QuicTime::Delta rtt_sample, QuicTime now) { argument
101 new_min_rtt_ = RttSample(rtt_sample, now);
110 recent_min_rtt_ = RttSample(rtt_sample, now);
113 half_window_rtt_ = RttSample(rtt_sample, now);
116 quarter_window_rtt_ = RttSample(rtt_sample, now);
120 if (recent_min_rtt_.time < now.Subtract(recent_min_rtt_window_)) {
123 quarter_window_rtt_ = RttSample(rtt_sample, now);
125 now
53 UpdateRtt(QuicTime::Delta send_delta, QuicTime::Delta ack_delay, QuicTime now) argument
[all...]
/external/chromium_org/rlz/lib/
H A Dfinancial_ping_test.cc191 int64 now = GetSystemTimeAsInt64(); local
192 int64 last_ping = now - rlz_lib::kEventsPingInterval - k1MinuteInterval;
207 last_ping = now - rlz_lib::kEventsPingInterval + k1MinuteInterval;
215 last_ping = now - rlz_lib::kNoEventsPingInterval + k1MinuteInterval;
221 last_ping = now - rlz_lib::kNoEventsPingInterval - k1MinuteInterval;
227 last_ping = now + k1MinuteInterval;
243 int64 now = GetSystemTimeAsInt64();
244 int64 last_ping = now - rlz_lib::kEventsPingInterval - k1MinuteInterval;
264 last_ping = now - k1MinuteInterval;
278 int64 now local
[all...]
/external/chromium_org/storage/browser/fileapi/
H A Dtimed_task_helper.cc73 base::TimeTicks now = base::TimeTicks::Now(); local
74 if (desired_run_time_ > now) {
75 PostDelayedTask(tracker.Pass(), desired_run_time_ - now);
/external/chromium_org/third_party/WebKit/Source/core/timing/
H A DMemoryInfo.cpp65 double now = monotonicallyIncreasingTime(); local
66 if (now - m_lastUpdateTime >= TwentyMinutesInSeconds) {
68 m_lastUpdateTime = now;
/external/chromium_org/third_party/icu/source/test/compat/
H A Dtzdate.c110 time_t now; local
114 time(&now);
115 ts = *localtime(&now);
125 now = mktime(&ts);
126 ts = *localtime(&now);
132 return (double)now;
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dvalidating_util.cc107 bool ValidatingUtil::UnwrapTimestamp(std::string* data, time_t now) { argument
109 if (now < 0) {
130 double age_in_seconds = difftime(now, timestamp);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dcurrentspeakermonitor.cc98 // add it now with a "not speaking" state.
186 uint32 now = rtc::Time(); local
187 if (earliest_permitted_switch_time_ <= now &&
191 earliest_permitted_switch_time_ = now + min_time_between_switches_;
/external/chromium_org/third_party/polymer/components-chromium/paper-ripple/
H A Dpaper-ripple-extracted.js109 var now = Date.now; variable
110 if (window.performance && performance.now) {
111 now = performance.now.bind(performance);
202 wave.mouseDownStart = now();
228 wave.mouseUpStart = now();
265 wave.tDown = now() - wave.mouseDownStart;
268 wave.tUp = now() - wave.mouseUpStart;
328 // If there is nothing to draw, clear any drawn waves now becaus
[all...]
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dbitrate.cc53 int64_t now = clock_->TimeInMilliseconds(); local
54 int64_t diff_ms = now - time_last_rate_update_;
79 int64_t now = clock_->CurrentNtpInMilliseconds(); local
80 int64_t diff_ms = now - time_last_rate_update_;
88 time_last_rate_update_ = now;
108 time_last_rate_update_ = now;
116 stats.timestamp_ms = now;
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dmt_test_common.cc54 int64_t now = clock->TimeInMilliseconds(); local
67 newPacket->receiveTime = now + simulatedDelay;
79 int64_t now = clock->TimeInMilliseconds(); local
85 int64_t timeToReceive = packet->receiveTime - now;
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
H A Dvideo_decimator.cc111 int64_t now = TickTime::MillisecondTimestamp(); local
120 incoming_frame_times_[0] = now;
121 ProcessIncomingframe_rate(now);
124 void VPMVideoDecimator::ProcessIncomingframe_rate(int64_t now) { argument
130 now - incoming_frame_times_[num] > kFrameHistoryWindowMs) {
137 int64_t diff = now - incoming_frame_times_[num-1];
/external/chromium_org/third_party/webrtc/video/
H A Dreceive_statistics_proxy.cc84 uint64_t now = clock_->TimeInMilliseconds(); local
87 decode_fps_estimator_.Update(1, now);
88 stats_.decode_frame_rate = decode_fps_estimator_.Rate(now);
92 uint64_t now = clock_->TimeInMilliseconds(); local
95 renders_fps_estimator_.Update(1, now);
96 stats_.render_frame_rate = renders_fps_estimator_.Rate(now);
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/helpers/
H A Dvie_file_capture_device.cc30 uint64_t now = webrtc::TickTime::MillisecondTimestamp(); local
31 if (now - frame_start_ < time_per_frame_ms_) {
32 sleeper->Wait(time_per_frame_ms_ - (now - frame_start_));
/external/chromium_org/ui/wm/core/
H A Duser_activity_detector.cc100 base::TimeTicks now = GetCurrentTime(); local
101 last_activity_time_ = now;
103 (now - last_observer_notification_time_).InMillisecondsF() >=
108 last_observer_notification_time_ = now;
/external/chromium_org/v8/src/base/platform/
H A Dtime-unittest.cc66 Time now = Time::Now(); local
67 EXPECT_EQ(now, Time::FromTimespec(now.ToTimespec()));
82 Time now = Time::Now(); local
83 EXPECT_EQ(now, Time::FromTimeval(now.ToTimeval()));
100 Time now = Time::Now(); local
101 EXPECT_EQ(now, Time::FromFiletime(now.ToFiletime()));
129 T now local
[all...]
/external/e2fsprogs/misc/
H A Dfindsuper.c197 time_t now, diff; local
199 now = time(0);
200 diff = now - last;
203 s = ctime(&now);
213 last = now;
/external/icu/icu4c/source/test/compat/
H A Dtzdate.c110 time_t now; local
114 time(&now);
115 ts = *localtime(&now);
125 now = mktime(&ts);
126 ts = *localtime(&now);
132 return (double)now;
/external/libcxx/test/thread/thread.condition/thread.condition.condvar/
H A Dwait_until_pred.pass.cpp34 static time_point now() function in struct:Clock
38 steady_clock::now().time_since_epoch()
66 Clock::time_point t0 = Clock::now();
69 Clock::time_point t1 = Clock::now();
/external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
H A Dwait_until_pred.pass.cpp34 static time_point now() function in struct:Clock
38 steady_clock::now().time_since_epoch()
70 Clock::time_point t0 = Clock::now();
73 Clock::time_point t1 = Clock::now();
/external/lldb/tools/debugserver/source/
H A DDNBTimer.h67 // Reset the time value to now
93 // Return the number of microseconds elapsed between now and the
100 struct timeval now; local
101 gettimeofday (&now, NULL);
102 uint64_t now_usec = (uint64_t)(now.tv_sec) * 1000000ull + (uint64_t)now.tv_usec;
107 m_timeval = now;
113 struct timeval now; local
114 gettimeofday (&now, NULL);
115 uint64_t now_usec = (uint64_t)(now
124 struct timeval now; local
141 struct timespec now; local
[all...]

Completed in 573 milliseconds

1234567891011>>