Lines Matching refs:tick
238 void explicitTimer::start(tsc_tick_count tick) { in start() argument
239 startTime = tick; in start()
247 void explicitTimer::stop(tsc_tick_count tick, in stop() argument
252 stat->addSample(((tick - startTime) - totalPauseTime).ticks()); in stop()
259 tick.getValue() - __kmp_stats_start_time.getValue(), in stop()
296 tsc_tick_count tick = tsc_tick_count::now(); in push() local
297 current_timer->pause(tick); in push()
298 new_timer->start(tick); in push()
312 tsc_tick_count tick = tsc_tick_count::now(); in pop() local
313 old_timer->stop(tick); in pop()
314 new_timer->resume(tick); in pop()
326 tsc_tick_count tick = tsc_tick_count::now(); in exchange() local
329 current_timer->stop(tick); in exchange()
333 new_timer->start(tick); in exchange()