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

  /external/v8/test/cctest/
test-profile-generator.cc 648 CHECK_EQ(kSamplingIntervalMs, calc1.ticks_per_ms());
650 CHECK_EQ(kSamplingIntervalMs, calc1.ticks_per_ms());
653 CHECK_EQ(kSamplingIntervalMs, calc1.ticks_per_ms());
656 CHECK_EQ(kSamplingIntervalMs, calc1.ticks_per_ms());
659 CHECK_EQ(kSamplingIntervalMs, calc1.ticks_per_ms());
663 CHECK_EQ(kSamplingIntervalMs, calc2.ticks_per_ms());
665 CHECK_EQ(kSamplingIntervalMs, calc2.ticks_per_ms());
669 CHECK_EQ(kSamplingIntervalMs * 1.5, calc2.ticks_per_ms());
673 CHECK_EQ(kSamplingIntervalMs * 5.0, floor(calc2.ticks_per_ms() * 3.0 + 0.5));
677 CHECK_EQ(kSamplingIntervalMs, calc3.ticks_per_ms());
    [all...]
  /external/v8/src/
profile-generator.h 192 void SetTickRatePerMs(double ticks_per_ms);
364 double ticks_per_ms() { function in class:v8::internal::SampleRateCalculator
430 return sample_rate_calc_.ticks_per_ms();
    [all...]
profile-generator.cc 380 void ProfileTree::SetTickRatePerMs(double ticks_per_ms) {
381 ms_to_ticks_scale_ = ticks_per_ms > 0 ? 1.0 / ticks_per_ms : 1.0;
    [all...]

Completed in 714 milliseconds