Home
last modified time | relevance | path

Searched refs:Tick (Results 1 – 10 of 10) sorted by relevance

/CTR-SDK-2.4.0/include/nn/os/
Dos_Tick.h42 class Tick
51 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 …]
/CTR-SDK-2.4.0/sources/libraries/ndm/
Dndm_Setup.cpp46 nn::os::Tick tickStart = nn::os::Tick::GetSystemCurrent(); in SetupDaemonsDefault()
82 … daemons are disabled by default at this time. (took %lldms)\n", (nn::os::Tick::GetSystemCurrent()… in SetupDaemonsDefault()
/CTR-SDK-2.4.0/include/nn/socket/
Dsocket_Types.h32 typedef s64 Tick; typedef
/CTR-SDK-2.4.0/include/nn/snd/CTR/MPCore/
Dsnd_Api.h128 nn::os::Tick GetSoundThreadTick();
196 void WaitForDspSync(nn::os::Tick* pTick);
/CTR-SDK-2.4.0/sources/libraries/rdt/CTR/
Drdt_Stopwatch.h140 m_start = nn::os::Tick::GetSystemCurrent(); in Start()
Drdt_Stopwatch.cpp138 s64 diff = nn::os::Tick::GetSystemCurrent() - m_start; in Stop()
Drdt_Utility.cpp309 return nn::os::Tick::GetSystemCurrent().ToTimeSpan().GetMilliSeconds();
/CTR-SDK-2.4.0/include/nn/dlp/CTR/
Ddlp_Type.h262 nn::os::Tick lastUpdateTick; //
/CTR-SDK-2.4.0/sources/libraries/dbg/
Ddbg_Logger.cpp218 s64 msec = nn::os::Tick::GetSystemCurrent().ToTimeSpan().GetMilliSeconds(); in PrintLog()
/CTR-SDK-2.4.0/sources/libraries/os/
Dos_Thread.cpp246 SpinWaitCpuCycles(Tick(span)); in SleepImpl()