Searched refs:Ticks (Results 1 - 25 of 30) sorted by relevance

12

/external/v8/src/
H A Dcounters.cc53 start_time_ = OS::Ticks();
60 stop_time_ = OS::Ticks();
71 start_time_ = OS::Ticks();
78 stop_time_ = OS::Ticks();
H A Dplatform-nullos.cc112 int64_t OS::Ticks() { function in class:v8::internal::OS
H A Dplatform.h134 static int64_t Ticks();
H A Dplatform-posix.cc187 int64_t OS::Ticks() { function in class:v8::internal::OS
H A Dcompiler.cc160 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
261 int64_t start = OS::Ticks();
H A Dplatform-macos.cc99 uint64_t seed = Ticks() ^ (getpid() << 16);
H A Ddeoptimizer.cc531 int64_t start = OS::Ticks();
590 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
H A Dplatform-linux.cc84 uint64_t seed = Ticks() ^ (getpid() << 16);
H A Dplatform-openbsd.cc105 uint64_t seed = Ticks() ^ (getpid() << 16);
/external/chromium_org/v8/src/
H A Dcounters.cc64 start_time_ = OS::Ticks();
75 stop_time_ = OS::Ticks();
H A Doptimizing-compiler-thread.cc52 if (FLAG_trace_parallel_recompilation) epoch = OS::Ticks();
68 time_spent_total_ = OS::Ticks() - epoch;
85 if (FLAG_trace_parallel_recompilation) compiling_start = OS::Ticks();
90 time_spent_compiling_ += OS::Ticks() - compiling_start;
H A Dplatform-nullos.cc117 int64_t OS::Ticks() { function in class:v8::internal::OS
H A Dcompiler.h545 start_(OS::Ticks()),
549 *location_ += (OS::Ticks() - start_);
H A Dprofile-generator.cc379 start_time_us_(OS::Ticks()),
391 end_time_us_ = OS::Ticks();
H A Dcompiler.cc385 start_ticks = OS::Ticks();
404 int64_t ticks = OS::Ticks() - start_ticks;
1250 start_ticks_ = OS::Ticks();
1259 int64_t ticks = OS::Ticks() - start_ticks_;
H A Dplatform-macos.cc444 uint64_t seed = Ticks() ^ (getpid() << 16);
H A Dlog.cc870 int since_epoch = static_cast<int>(OS::Ticks() - epoch_);
880 int since_epoch = static_cast<int>(OS::Ticks() - epoch_);
1503 msg.Append(",%ld", static_cast<int>(OS::Ticks() - epoch_));
1896 if (FLAG_log_internal_timer_events || FLAG_prof) epoch_ = OS::Ticks();
H A Dplatform-openbsd.cc503 uint64_t seed = Ticks() ^ (getpid() << 16);
H A Dplatform.h211 static int64_t Ticks();
H A Dplatform-linux.cc759 uint64_t seed = Ticks() ^ (getpid() << 16);
H A Dplatform-posix.cc328 int64_t OS::Ticks() { function in class:v8::internal::OS
H A Dparser.cc574 int64_t start = FLAG_trace_parse ? OS::Ticks() : 0;
595 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
701 int64_t start = FLAG_trace_parse ? OS::Ticks() : 0;
721 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
/external/webrtc/src/system_wrappers/interface/
H A Dtick_util.h47 WebRtc_Word64 Ticks() const;
237 inline WebRtc_Word64 TickTime::Ticks() const function in class:webrtc::TickTime
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaBench.cs299 UInt64 encodeTime = (UInt64)sp2.Ticks;
316 decodeTime = (ulong)sp.Ticks;
/external/chromium_org/v8/test/cctest/
H A Dtest-cpu-profiler.cc418 int64_t time_before_profiling = i::OS::Ticks();
424 CHECK(profile->GetEndTime() <= i::OS::Ticks());

Completed in 410 milliseconds

12