Searched refs:TimerStack (Results 1 – 3 of 3) sorted by relevance
29 typedef std::vector<Timer *> TimerStack; typedef43 static TimerStack &GetTimerStackForCurrentThread() { in GetTimerStackForCurrentThread()44 static thread_local TimerStack g_stack; in GetTimerStackForCurrentThread()63 TimerStack &stack = GetTimerStackForCurrentThread(); in Timer()91 TimerStack &stack = GetTimerStackForCurrentThread(); in ~Timer()
238 TimerStack.push_back(&MyTimer); in startTimer()244 assert(TimerStack.size() > 0 && "empty stack in popTimer"); in stopTimer()245 Timer *MyTimer = TimerStack.pop_back_val(); in stopTimer()
58 SmallVector<Timer *, 8> TimerStack; variable