Lines Matching refs:count_stop_
85 // number of measurements increases, it increases |count_stop_| by the number of
87 // |count_stop_|.
91 : CumulativeTimer(out, measure_mem_usage), count_stop_(0) {}
92 double CPUTime() override { return count_stop_ * 0.019123; }
93 double WallTime() override { return count_stop_ * 0.019723; }
94 double UserTime() override { return count_stop_ * 0.012723; }
95 double SystemTime() override { return count_stop_ * 0.002723; }
96 long RSS() const override { return count_stop_ * 360L; }
97 long PageFault() const override { return count_stop_ * 3600L; }
99 // Calling Stop() does nothing but just increases |count_stop_| by 1.
100 void Stop() override { ++count_stop_; }
103 unsigned int count_stop_;