Lines Matching refs:s_Counter
21 int TimerLog::s_Counter = 0; member in nn::test::TimerLog
34 s_Counter = 0; in Initialize()
49 s_Counter = 0; in ResetTimerLog()
54 s_Counter = 0; in Reset()
122 int imax = (s_Counter < s_CounterMax) ? s_Counter : s_CounterMax; in RenewAverage()
158 if (s_Counter < s_CounterMax) in AddTimerLog()
160 s_pHead[s_Counter].m_charTag = charTag; in AddTimerLog()
161 s_pHead[s_Counter].m_s32Tag = s32Tag; in AddTimerLog()
162 s_pHead[s_Counter].m_Line = line; in AddTimerLog()
163 s_pHead[s_Counter++].m_Tick = nn::os::Tick::GetSystemCurrent(); in AddTimerLog()
165 else if (s_Counter < 0x7FFFFFFF) in AddTimerLog()
167 s_Counter++; in AddTimerLog()
173 int imax = (s_Counter < s_CounterMax) ? s_Counter : s_CounterMax; in ShowTimerLog()
191 if (s_Counter > s_CounterMax) in ShowTimerLog()
193 …nn::dbg::detail::TPrintf("[TimerLog] %d logs were skipped (out of log buffer)\n", s_Counter - s_Co… in ShowTimerLog()