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

1 2

  /external/v8/src/
counters.cc 53 start_time_ = OS::Ticks();
60 stop_time_ = OS::Ticks();
71 start_time_ = OS::Ticks();
78 stop_time_ = OS::Ticks();
platform-nullos.cc 111 // Returns ticks in microsecond resolution.
112 int64_t OS::Ticks() {
platform.h 134 static int64_t Ticks();
261 // Support for the profiler. Can do nothing, in which case ticks
platform-posix.cc 187 int64_t OS::Ticks() {
compiler.cc 160 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
261 int64_t start = OS::Ticks();
platform-macos.cc 99 uint64_t seed = Ticks() ^ (getpid() << 16);
deoptimizer.cc 531 int64_t start = OS::Ticks();
590 double ms = static_cast<double>(OS::Ticks() - start) / 1000;
    [all...]
platform-linux.cc 84 uint64_t seed = Ticks() ^ (getpid() << 16);
541 // PROT_EXEC so that analysis tools can properly attribute ticks. We
    [all...]
platform-openbsd.cc 105 uint64_t seed = Ticks() ^ (getpid() << 16);
343 // PROT_EXEC so that analysis tools can properly attribute ticks. We
  /external/chromium_org/v8/src/
counters.cc 64 start_time_ = OS::Ticks();
75 stop_time_ = OS::Ticks();
optimizing-compiler-thread.cc 52 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;
compiler.h 545 start_(OS::Ticks()),
549 *location_ += (OS::Ticks() - start_);
platform-nullos.cc 116 // Returns ticks in microsecond resolution.
117 int64_t OS::Ticks() {
profile-generator.cc 379 start_time_us_(OS::Ticks()),
391 end_time_us_ = OS::Ticks();
396 unsigned ticks = top_down_.root()->total_ticks(); local
397 double rate = ticks / duration_ms;
compiler.cc 385 start_ticks = OS::Ticks();
404 int64_t ticks = OS::Ticks() - start_ticks; local
405 isolate()->GetHStatistics()->IncrementFullCodeGen(ticks);
1259 int64_t ticks = OS::Ticks() - start_ticks_; local
    [all...]
log.cc 606 // Ticker used to provide ticks to the profiler and the sliding state
665 // Register to get ticks.
676 // Stop receiving ticks.
870 int since_epoch = static_cast<int>(OS::Ticks() - epoch_);
880 int since_epoch = static_cast<int>(OS::Ticks() - epoch_);
    [all...]
platform-macos.cc 444 uint64_t seed = Ticks() ^ (getpid() << 16);
platform-openbsd.cc 245 // PROT_EXEC so that analysis tools can properly attribute ticks. We
503 uint64_t seed = Ticks() ^ (getpid() << 16);
platform.h 211 static int64_t Ticks();
343 // Support for the profiler. Can do nothing, in which case ticks
platform-linux.cc 504 // PROT_EXEC so that analysis tools can properly attribute ticks. We
759 uint64_t seed = Ticks() ^ (getpid() << 16);
platform-posix.cc 328 int64_t OS::Ticks() {
parser.cc 574 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;
    [all...]
  /external/webrtc/src/system_wrappers/interface/
tick_util.h 47 WebRtc_Word64 Ticks() const;
51 static WebRtc_Word64 TicksToMilliseconds(const WebRtc_Word64 ticks);
53 // Returns a TickTime that is ticks later than the passed TickTime
54 friend TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks);
58 // Returns a TickInterval that is the difference in ticks beween rhs and lhs
112 inline TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks)
115 time._ticks += ticks;
237 inline WebRtc_Word64 TickTime::Ticks() const
259 inline WebRtc_Word64 TickTime::TicksToMilliseconds(const WebRtc_Word64 ticks)
265 return (ticks * 1000) / qpfreq.QuadPart
    [all...]
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 299 UInt64 encodeTime = (UInt64)sp2.Ticks;
316 decodeTime = (ulong)sp.Ticks;
  /external/chromium_org/v8/test/cctest/
test-cpu-profiler.cc 418 int64_t time_before_profiling = i::OS::Ticks();
424 CHECK(profile->GetEndTime() <= i::OS::Ticks());
    [all...]

Completed in 5213 milliseconds

1 2