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

1 2

  /external/ceres-solver/internal/ceres/
wall_time.h 80 const double start_time_; member in class:ceres::internal::EventLogger
execution_summary.h 73 : start_time_(WallTimeInSeconds()),
78 summary_->IncrementTimeBy(name_, WallTimeInSeconds() - start_time_);
82 const double start_time_; member in class:ceres::internal::ScopedExecutionTimer
wall_time.cc 63 : start_time_(WallTimeInSeconds()),
64 last_event_time_(start_time_),
85 const double absolute_time_delta = current_time - start_time_;
  /toolchain/binutils/binutils-2.25/gold/
timer.cc 42 this->start_time_.wall = 0;
43 this->start_time_.user = 0;
44 this->start_time_.sys = 0;
51 this->get_time(&this->start_time_);
114 delta.wall = now.wall - this->start_time_.wall;
115 delta.user = now.user - this->start_time_.user;
116 delta.sys = now.sys - this->start_time_.sys;
126 TimeStats& lastpass = n > 0 ? this->pass_times_[n-1] : this->start_time_;
timer.h 73 TimeStats start_time_; member in class:gold::Timer
  /system/core/metricsd/
timer.cc 35 start_time_ = clock_wrapper_->GetCurrentTime();
44 elapsed_time_ += clock_wrapper_->GetCurrentTime() - start_time_;
58 elapsed_time_ += clock_wrapper_->GetCurrentTime() - start_time_;
70 start_time_ = clock_wrapper_->GetCurrentTime();
89 if (start_time_.is_null() || !elapsed_time)
93 *elapsed_time += clock_wrapper_->GetCurrentTime() - start_time_;
timer_test.cc 74 ASSERT_TRUE(timer_.start_time_ == stime);
93 base::TimeTicks buffer = timer_.start_time_;
95 ASSERT_FALSE(timer_.start_time_ == buffer);
118 ASSERT_TRUE(timer_.start_time_ == stime2);
157 ASSERT_TRUE(timer_.start_time_ == stime);
161 ASSERT_TRUE(timer_.start_time_ == stime2);
186 ASSERT_TRUE(timer_.start_time_ == stime);
190 ASSERT_TRUE(timer_.start_time_ == stime2);
213 ASSERT_TRUE(timer_.start_time_ == stime);
217 ASSERT_TRUE(timer_.start_time_ == stime)
    [all...]
  /external/google-breakpad/src/testing/gtest/samples/
sample5_unittest.cc 68 start_time_ = time(NULL);
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
84 time_t start_time_; member in class:QuickTest
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample5_unittest.cc 68 start_time_ = time(NULL);
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
84 time_t start_time_; member in class:QuickTest
  /ndk/sources/third_party/googletest/googletest/samples/
sample5_unittest.cc 68 start_time_ = time(NULL);
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
84 time_t start_time_; member in class:QuickTest
  /external/protobuf/gtest/samples/
sample5_unittest.cc 68 start_time_ = time(NULL);
80 EXPECT_TRUE(end_time - start_time_ <= 5) << "The test took too long.";
84 time_t start_time_; member in class:QuickTest
  /external/webrtc/webrtc/modules/audio_processing/test/
audio_file_processor.h 63 : proc_time_(proc_time), start_time_(TickTime::Now()) {}
66 TickInterval interval = TickTime::Now() - start_time_;
74 TickTime start_time_; member in class:webrtc::AudioFileProcessor::ScopedTimer
  /development/ndk/sources/android/ndk_helper/
interpolator.cpp 51 start_time_ = PerfMonitor::GetCurrentTime();
52 dest_time_ = start_time_ + duration;
93 float t = (float) (current_time - start_time_);
94 float d = (float) (dest_time_ - start_time_);
interpolator.h 57 double start_time_; member in class:ndk_helper::Interpolator
  /external/google-breakpad/src/client/windows/crash_generation/
client_info.cc 58 GetSystemTimeAsFileTime(&start_time_);
71 start_time_ = creation_time;
73 crash_id_ = start_time_.dwLowDateTime;
167 time_start.HighPart = start_time_.dwHighDateTime;
168 time_start.LowPart = start_time_.dwLowDateTime;
client_info.h 163 FILETIME start_time_; member in class:google_breakpad::ClientInfo
  /external/webrtc/webrtc/modules/video_coding/test/
stream_generator.cc 25 : packets_(), sequence_number_(start_seq_num), start_time_(current_time) {}
30 start_time_ = current_time;
38 uint32_t timestamp = 90 * (time_ms - start_time_);
stream_generator.h 64 int64_t start_time_; member in class:webrtc::StreamGenerator
  /external/webrtc/webrtc/base/
task.cc 27 start_time_(0),
56 return CurrentTime() - start_time_;
63 // finishes quickly and deletes the Task object, setting start_time_
65 start_time_ = CurrentTime();
task.h 163 int64_t start_time_; member in class:rtc::Task
  /system/core/metricsd/include/metrics/
timer.h 118 base::TimeTicks start_time_; member in class:chromeos_metrics::Timer
  /art/runtime/
thread_pool.cc 116 start_time_(0),
156 start_time_ = NanoTime();
188 total_wait_time_ += wait_end - std::max(wait_start, start_time_);
thread_pool.h 145 uint64_t start_time_ GUARDED_BY(task_queue_lock_);
  /external/libchrome/dbus/
dbus_statistics.cc 66 : start_time_(base::Time::Now()),
122 base::Time start_time() { return start_time_; }
126 base::Time start_time_; member in class:dbus::__anon15349::DBusStatistics
  /external/webrtc/webrtc/test/
frame_generator.cc 142 start_time_(clock->TimeInMilliseconds()),
168 int64_t ms_since_start = now - start_time_;
224 const int64_t start_time_; member in class:webrtc::test::__anon27327::ScrollingImageFrameGenerator

Completed in 628 milliseconds

1 2