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

  /external/v8/src/
counters.cc 44 stop_time_ = 0;
52 stop_time_ = OS::Ticks();
55 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000;
62 stop_time_ = 0;
70 stop_time_ = OS::Ticks();
73 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000;
counters.h 176 int64_t stop_time_; member in struct:v8::internal::StatsCounterTimer
186 return counter_.Enabled() && start_time_ != 0 && stop_time_ == 0;
198 int64_t stop_time_; member in struct:v8::internal::HistogramTimer
208 return (histogram_ != NULL) && (start_time_ != 0) && (stop_time_ == 0);

Completed in 16 milliseconds