HomeSort by relevance Sort by last modified time
    Searched refs:time_now (Results 1 - 25 of 33) sorted by null

1 2

  /external/netperf/src/
net_uuid.c 182 uuid_time_t time_now; local
185 get_system_time(&time_now);
186 time_now = time_now / UUIDS_PER_TICK;
188 (((time_now >> 32) ^ time_now) & 0xffffffff));
243 uuid_time_t time_now; local
246 get_system_time(&time_now);
252 get_system_time(&time_now);
255 if (time_last != time_now) {
    [all...]
  /external/webrtc/webrtc/common_video/
video_render_frames.cc 30 const int64_t time_now = TickTime::MillisecondTimestamp(); local
35 new_frame.render_time_ms() + KOldRenderTimestampMS < time_now) {
45 if (new_frame.render_time_ms() > time_now + KFutureRenderTimestampMS) {
  /external/dbus/dbus/
dbus-sysdeps-pthread.c 223 struct timeval time_now; local
232 time_now.tv_sec = monotonic_timer.tv_sec;
233 time_now.tv_usec = monotonic_timer.tv_nsec / 1000;
238 gettimeofday (&time_now, NULL);
240 end_time.tv_sec = time_now.tv_sec + timeout_milliseconds / 1000;
241 end_time.tv_nsec = (time_now.tv_usec + (timeout_milliseconds % 1000) * 1000) * 1000;
  /external/autotest/client/cros/
power_rapl.py 195 time_now = time.time()
197 time_used = time_now - self._time_start
204 self._time_start = time_now
  /external/google-breakpad/src/client/windows/crash_generation/
client_info.cc 170 ULARGE_INTEGER time_now; local
171 time_now.HighPart = now.dwHighDateTime;
172 time_now.LowPart = now.dwLowDateTime;
175 __int64 delay = (time_now.QuadPart - time_start.QuadPart) / 10 / 1000;
  /external/webrtc/webrtc/test/
fake_network_pipe.cc 116 int64_t time_now = clock_->TimeInMilliseconds(); local
122 int64_t network_start_time = time_now;
130 NetworkPacket* packet = new NetworkPacket(data, data_length, time_now,
154 int64_t time_now = clock_->TimeInMilliseconds(); local
160 time_now >= capacity_link_.front()->arrival_time()) {
189 time_now >= delay_link_.front()->arrival_time()) {
194 // |time_now| might be later than when the packet should have arrived, due
  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl.cc 26 int64_t GetNextCallbackTime(Module* module, int64_t time_now) {
30 return time_now;
32 return time_now + interval;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_network_stats_unittest.cc 180 uint32_t time_now; local
184 time_now = next_send_time = last_lost_time_ =
189 while (time_now + kFrameSizeMs >= next_send_time) {
198 time_now += kOutputLengthMs;
neteq_external_decoder_unittest.cc 106 uint32_t time_now = 0; local
108 while (time_now >= next_arrival_time) {
125 time_now += kOutputLengthMs;
neteq_stereo_unittest.cc 192 int time_now = 0; local
194 while (time_now >= next_arrival_time) {
238 time_now += kTimeStepMs;
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
aimd_rate_control.h 38 bool TimeToReduceFurther(int64_t time_now,
remote_bitrate_estimator_single_stream.h 49 void UpdateEstimate(int64_t time_now)
remote_bitrate_estimator_unittest_helper.h 111 StreamGenerator(int capacity, double time_now);
aimd_rate_control.cc 69 bool AimdRateControl::TimeToReduceFurther(int64_t time_now,
73 if (time_now - time_last_bitrate_change_ >= bitrate_reduction_interval) {
  /external/autotest/client/deps/glbench/src/
utils.cc 158 uint64_t time_now = time_start; local
159 uint64_t time_end = time_now + 1e6 * timeout;
161 while (time_now < time_end) {
165 time_now = GetUTime();
168 double wait_time = 1.0e-6 * (time_now - time_start);
  /system/core/metricsd/collectors/
averaged_statistics_collector.cc 172 double time_now = MetricsCollector::GetActiveTime(); local
173 double delta_time = time_now - stats_start_time_;
  /external/webrtc/webrtc/video/
overuse_frame_detector.h 111 bool IsUnderusing(const CpuOveruseMetrics& metrics, int64_t time_now);
overuse_frame_detector.cc 356 int64_t time_now) {
358 if (time_now < last_rampup_time_ + delay)
  /system/connectivity/shill/
ipconfig_unittest.cc 292 const struct timeval time_now = {kTimeNow, 0}; local
298 .WillOnce(DoAll(SetArgPointee<0>(time_now), Return(0)));
307 const struct timeval time_now = {kTimeNow, 0}; local
314 .WillOnce(DoAll(SetArgPointee<0>(time_now), Return(0)));
  /external/dnsmasq/src/
log.c 263 time_t time_now; local
337 time(&time_now);
342 p += sprintf(p, "%.15s dnsmasq%s[%d]: ", ctime(&time_now) + 4, func, (int)pid);
  /external/webrtc/webrtc/modules/video_coding/test/
rtp_player.cc 128 RawRtpPacket* NextPacketToResend(int64_t time_now) {
132 if (time_now >= packet->resend_time_ms() &&
349 virtual int NextPacket(int64_t time_now) {
351 for (RawRtpPacket* packet = lost_packets_.NextPacketToResend(time_now);
352 packet != NULL; packet = lost_packets_.NextPacketToResend(time_now)) {
  /external/boringssl/src/tool/
speed.cc 65 static uint64_t time_now() { return GetTickCount64() * 1000; } function
67 static uint64_t time_now() { function
78 static uint64_t time_now() { function
93 uint64_t start = time_now(), now, delta;
99 now = time_now();
122 now = time_now();
  /external/v8/src/
d8-posix.cc 90 struct timeval time_now; local
91 gettimeofday(&time_now, NULL);
92 time_t seconds = time_now.tv_sec - start_time.tv_sec;
94 (time_now.tv_usec - start_time.tv_usec) / 1000);
126 struct timeval time_now; local
127 gettimeofday(&time_now, NULL);
129 int seconds = static_cast<int>(time_now.tv_sec - start_time.tv_sec);
134 int useconds = static_cast<int>(time_now.tv_usec - start_time.tv_usec);
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_primary.cpp 481 STRUCT_VAR(timeval, time_now);
482 gettimeofday(&time_now, NULL);
483 int64_t ts = int64_t(time_now.tv_sec)*1000000000LL +int64_t(time_now.tv_usec)*1000LL;
  /external/libweave/third_party/chromium/base/time/
time_unittest.cc 780 Time time_now = Time::Now(); local
781 EXPECT_EQ(one_second, (time_now + one_second) - time_now);
782 EXPECT_EQ(-one_second, (time_now - one_second) - time_now);

Completed in 417 milliseconds

1 2