Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/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-1.0.0/CTR_SDK/include/nn/font/
Dfont_Stopwatch.h37 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;
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/ndm/
Dndm_Setup.cpp32 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()
/CTR-SDK-1.0.0/CTR_SDK/include/nn/socket/
Dsocket_Types.h32 typedef s64 Tick; typedef
/CTR-SDK-1.0.0/CTR_SDK/include/nn/snd/CTR/MPCore/
Dsnd_Api.h127 nn::os::Tick GetSoundThreadTick();
220 void WaitForDspSync(nn::os::Tick* pTick);
/CTR-SDK-1.0.0/CTR_SDK/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-1.0.0/CTR_SDK/include/nn/dlp/CTR/
Ddlp_Type.h255 nn::os::Tick lastUpdateTick; //!< 最後に更新された Tick です。
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/dbg/
Ddbg_Logger.cpp218 s64 msec = nn::os::Tick::GetSystemCurrent().ToTimeSpan().GetMilliSeconds(); in PrintLog()
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/os/
Dos_Thread.cpp238 SpinWaitCpuCycles(Tick(span)); in SleepImpl()