Home
last modified time | relevance | path

Searched refs:T_WAIT_TICK (Results 1 – 5 of 5) sorted by relevance

/dports/emulators/quasi88/quasi88-0.6.4/src/X11/
H A Dwait.c52 typedef long long T_WAIT_TICK; typedef
54 typedef long T_WAIT_TICK; typedef
57 static T_WAIT_TICK next_time; /* ���ե졼��λ��� */
58 static T_WAIT_TICK delta_time; /* 1 �ե졼��λ��� */
60 static T_WAIT_TICK sleep_min_time = 100; /* sleep ��ǽ�ʺǾ����� */
111 INLINE T_WAIT_TICK get_tick(void) in get_tick()
124 (T_WAIT_TICK) (tv.tv_usec - start_tv.tv_usec)); in get_tick()
132 return ((T_WAIT_TICK) tv.tv_sec * 1000000 + (T_WAIT_TICK) tv.tv_usec); in get_tick()
145 INLINE T_WAIT_TICK get_tick(void) in get_tick()
154 return ((T_WAIT_TICK) (t / CLOCK_SLICE) * 1000000 + in get_tick()
[all …]
/dports/emulators/quasi88/quasi88-0.6.4/src/CLASSIC/
H A Dwait.c30 typedef long long T_WAIT_TICK;
32 typedef long T_WAIT_TICK; typedef
35 static T_WAIT_TICK next_time; /* ���ե졼��λ��� */
36 static T_WAIT_TICK delta_time; /* 1 �ե졼��λ��� */
42 #define GET_TICK() ( (T_WAIT_TICK)TickCount() * 1000000/60 )
70 delta_time = (T_WAIT_TICK)(1000000.0 / 60.0); /* 1�ե졼����� */ in wait_vsync_setup()
85 T_WAIT_TICK diff_us; in wait_vsync_update()
/dports/emulators/quasi88/quasi88-0.6.4/src/GTK/
H A Dwait.c30 typedef gint64 T_WAIT_TICK; typedef
32 typedef gint32 T_WAIT_TICK; typedef
35 static T_WAIT_TICK next_time; /* ���ե졼��λ��� */
36 static T_WAIT_TICK delta_time; /* 1 �ե졼��λ��� */
42 #define GET_TICK() ((T_WAIT_TICK)(g_timer_elapsed(timer_id, NULL) * 1000000.0))
81 delta_time = (T_WAIT_TICK) vsync_cycle_us; /* 1�ե졼����� */ in wait_vsync_setup()
95 T_WAIT_TICK diff_ms; in wait_vsync_update()
/dports/emulators/quasi88/quasi88-0.6.4/src/SDL/
H A Dwait.c33 typedef Sint64 T_WAIT_TICK; typedef
35 typedef long T_WAIT_TICK; typedef
38 static T_WAIT_TICK next_time; /* ���ե졼��λ��� */
39 static T_WAIT_TICK delta_time; /* 1 �ե졼��λ��� */
45 #define GET_TICK() ((T_WAIT_TICK)SDL_GetTicks() * 1000)
80 delta_time = (T_WAIT_TICK) vsync_cycle_us; /* 1�ե졼����� */ in wait_vsync_setup()
95 T_WAIT_TICK diff_ms; in wait_vsync_update()
/dports/emulators/quasi88/quasi88-0.6.4/src/WIN32/
H A Dwait.c50 typedef signed __int64 T_WAIT_TICK; typedef
52 static T_WAIT_TICK next_time; /* ���ե졼��λ��� */
53 static T_WAIT_TICK delta_time; /* 1 �ե졼��λ��� */
59 #define GET_TICK() ((T_WAIT_TICK)timeGetTime() * 1000)
89 delta_time = (T_WAIT_TICK) vsync_cycle_us; /* 1�ե졼����� */ in wait_vsync_setup()
108 T_WAIT_TICK diff_ms; in wait_vsync_update()