Home
last modified time | relevance | path

Searched refs:run_until_time (Results 1 – 6 of 6) sorted by relevance

/dports/games/libretro-beetle_saturn/beetle-saturn-libretro-ee5b214/mednafen/ss/
H A Dsound.cpp38 static int64 run_until_time; // 32.32 variable
189 run_until_time = 0; in SOUND_Init()
226 run_until_time -= (int64)SoundCPU.timestamp << 32; in SOUND_ResetTS()
279 run_until_time += ((uint64)(timestamp - lastts) * clock_ratio); in SOUND_Update()
283 if(MDFN_LIKELY(SoundCPU.timestamp < (run_until_time >> 32))) in SOUND_Update()
287 int32 next_time = std::min<int32>(next_scsp_time, run_until_time >> 32); in SOUND_Update()
293 } while(MDFN_LIKELY(SoundCPU.timestamp < (run_until_time >> 32))); in SOUND_Update()
297 while(next_scsp_time < (run_until_time >> 32)) in SOUND_Update()
318 SFVAR(run_until_time), in SOUND_StateAction()
325 run_until_time -= (int64)SoundCPU.timestamp << 32; in SOUND_StateAction()
[all …]
/dports/emulators/mednafen/mednafen/src/ss/
H A Dsound.cpp49 static int64 run_until_time; // 32.32 variable
99 run_until_time = 0; in SOUND_Init()
138 run_until_time -= (int64)SoundCPU.timestamp << 32; in ResetTS_68K()
218 run_until_time += ((uint64)(timestamp - lastts) * clock_ratio); in SOUND_Update()
222 if(MDFN_LIKELY(SoundCPU.timestamp < (run_until_time >> 32))) in SOUND_Update()
226 int32 next_time = std::min<int32>(next_scsp_time, run_until_time >> 32); in SOUND_Update()
232 } while(MDFN_LIKELY(SoundCPU.timestamp < (run_until_time >> 32))); in SOUND_Update()
236 while(next_scsp_time < (run_until_time >> 32)) in SOUND_Update()
325 SFVAR(run_until_time), in SOUND_StateAction()
332 run_until_time -= (int64)SoundCPU.timestamp << 32; in SOUND_StateAction()
[all …]
/dports/games/libretro-beetle_saturn/beetle-saturn-libretro-ee5b214/mednafen/hw_cpu/m68k/
H A Dm68k.h37 void Run(int32 run_until_time);
H A Dm68k.cpp2248 void NO_INLINE M68K::Run(int32 run_until_time) in Run() argument
2250 while(MDFN_LIKELY(timestamp < run_until_time)) in Run()
/dports/emulators/mednafen/mednafen/src/hw_cpu/m68k/
H A Dm68k.h37 void Run(int32 run_until_time);
H A Dm68k.cpp2271 void NO_INLINE M68K::Run(int32 run_until_time) in Run() argument
2273 while(MDFN_LIKELY(timestamp < run_until_time)) in Run()