Home
last modified time | relevance | path

Searched refs:iTotalTime (Results 1 – 4 of 4) sorted by relevance

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/
H A DDataCacheCore.cpp429 int64_t iTotalTime = m_timeInfo.m_timeMax - m_timeInfo.m_timeMin; in GetPlayPercentage() local
430 if (iTotalTime <= 0) in GetPlayPercentage()
433 return m_timeInfo.m_time * 100 / static_cast<float>(iTotalTime); in GetPlayPercentage()
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/src/game/Laptop/
H A DLaptop.cc1895 static INT32 iTotalTime = 0; in DisplayLoadPending() local
1931 iTotalTime = 0; in DisplayLoadPending()
1937 if (iTotalTime >= iLoadTime) in DisplayLoadPending()
1942 iTotalTime = 0; in DisplayLoadPending()
1957 iTotalTime += iDifference; in DisplayLoadPending()
1985 for (INT32 i = 0, iTempTime = iTotalTime; i <= 30 && iTempTime > 0; ++i, iTempTime -= iUnitTime) in DisplayLoadPending()
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/src/game/Strategic/
H A DMapScreen.cc1066 const UINT32 iTotalTime = GetGroundTravelTimeOfSoldier(s); in DisplayGroundEta() local
1073 if (iTotalTime < 60 * 24) in DisplayGroundEta()
1076 UINT Minutes = iTotalTime % 60; in DisplayGroundEta()
1077 UINT Hours = iTotalTime / 60; in DisplayGroundEta()
1084 UINT Hours = iTotalTime / 60 % 24; in DisplayGroundEta()
1085 UINT Days = iTotalTime / (60 * 24); in DisplayGroundEta()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/VideoPlayer/
H A DVideoPlayer.cpp3183 int64_t iTotalTime = m_processInfo->GetMaxTime(); in SeekPercentage() local
3185 if (!iTotalTime) in SeekPercentage()
3188 SeekTime((int64_t)(iTotalTime * iPercent / 100)); in SeekPercentage()
3193 int64_t iTotalTime = m_processInfo->GetMaxTime(); in GetPercentage() local
3195 if (!iTotalTime) in GetPercentage()
3198 return GetTime() * 100 / (float)iTotalTime; in GetPercentage()