Searched refs:Tick (Results 1 – 11 of 11) sorted by relevance
42 class Tick51 explicit Tick(s64 tick = 0) : m_Tick(tick) {} in m_Tick()58 Tick(nn::fnd::TimeSpan span);82 static Tick GetSystemCurrent();89 Tick& operator-=(Tick rhs) { this->m_Tick -= rhs.m_Tick; return *this; }90 Tick operator-(Tick rhs) const { Tick ret(*this); return ret -= rhs; }92 Tick& operator+=(Tick rhs) { this->m_Tick += rhs.m_Tick; return *this; }93 Tick operator+(Tick rhs) const { Tick ret(*this); return ret += rhs; }95 inline Tick& operator+=(fnd::TimeSpan rhs);96 Tick operator+(fnd::TimeSpan rhs) const { Tick ret(*this); return ret += rhs; }[all …]
37 m_StartTick = Tick::GetSystemCurrent(); in Start()47 m_TotalTick += Tick::GetSystemCurrent() - m_StartTick; in Stop()48 m_StartTick = nn::os::Tick(); in Stop()53 m_TotalTick = nn::os::Tick(); in Reset()63 return m_StartTick != nn::os::Tick(); in IsRunning()67 nn::os::Tick m_StartTick;68 nn::os::Tick m_TotalTick;
32 nn::os::Tick tickStart = nn::os::Tick::GetSystemCurrent(); in SetupDaemonsDefault()52 … daemons are disabled by default at this time. (took %lldms)\n", (nn::os::Tick::GetSystemCurrent()… in SetupDaemonsDefault()
32 typedef s64 Tick; typedef
127 nn::os::Tick GetSoundThreadTick();220 void WaitForDspSync(nn::os::Tick* pTick);
140 m_start = nn::os::Tick::GetSystemCurrent(); in Start()
138 s64 diff = nn::os::Tick::GetSystemCurrent() - m_start; in Stop()
309 return nn::os::Tick::GetSystemCurrent().ToTimeSpan().GetMilliSeconds();
255 nn::os::Tick lastUpdateTick; //!< 最後に更新された Tick です。
218 s64 msec = nn::os::Tick::GetSystemCurrent().ToTimeSpan().GetMilliSeconds(); in PrintLog()
238 SpinWaitCpuCycles(Tick(span)); in SleepImpl()